Skip to content

Commit

Permalink
Fixed: Undo close: Tabs without favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
mbnuqw committed Jul 12, 2023
1 parent 6689a60 commit 7316bd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/tabs.fg.handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ function onTabCreated(nativeTab: NativeTab, attached?: boolean): void {
tab.index = index
tab.parentId = Settings.state.tabsTree ? tab.openerTabId ?? NOID : NOID
if (!tab.favIconUrl && !tab.internal && !tab.url.startsWith('a')) {
tab.favIconUrl = Favicons.getFavicon(tab.url)
tab.reactive.favIconUrl = tab.favIconUrl = Favicons.getFavicon(tab.url)
}

// Check if tab should be reopened in different container
Expand Down

0 comments on commit 7316bd9

Please sign in to comment.