Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/background/heartbeat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
const data: IEvent['data'] = {
url: tab.url,
title: tab.title,
audible: String(tab.audible ?? false),
incognito: String(tab.incognito),
audible: tab.audible ?? false,

Check failure on line 34 in src/background/heartbeat.ts

View workflow job for this annotation

GitHub Actions / typecheck

Type 'boolean' is not assignable to type 'string | number'.
incognito: tab.incognito,

Check failure on line 35 in src/background/heartbeat.ts

View workflow job for this annotation

GitHub Actions / typecheck

Type 'boolean' is not assignable to type 'string | number'.
tabCount: tabCount,
}
const previousData = await getHeartbeatData()
Expand Down
Loading