Skip to content

Commit

Permalink
fix: Including pinned tab shows only pinned tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
navorite committed Oct 16, 2023
1 parent c9f2707 commit 4ab4682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/popup/sessions/CurrentSession.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
//should fix inconsistency in update flags
timeout = setTimeout(async () => {
$session = await getSession({
pinned: !$settings.excludePinned,
pinned: $settings.excludePinned ? false : undefined,
url: $settings.urlFilterList
});
Expand Down

0 comments on commit 4ab4682

Please sign in to comment.