We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2eb833 commit 2063067Copy full SHA for 2063067
packages/electron-chrome-extensions/src/browser/api/tabs.ts
@@ -336,7 +336,6 @@ export class TabsAPI {
336
'favIconUrl',
337
'frozen',
338
'groupId',
339
- 'mutedInfo',
340
'pinned',
341
'status',
342
'title',
@@ -353,6 +352,11 @@ export class TabsAPI {
353
352
}
354
355
+ if (details.mutedInfo?.muted !== prevDetails.mutedInfo?.muted) {
356
+ changeInfo.mutedInfo = details.mutedInfo
357
+ didUpdate = true
358
+ }
359
+
360
if (!didUpdate) return
361
362
this.ctx.router.broadcastEvent('tabs.onUpdated', tab.id, changeInfo, details)
0 commit comments