Skip to content

Commit

Permalink
version 0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Neomy committed Nov 9, 2022
1 parent c703937 commit a674763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v3/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 3,
"version": "0.6.5",
"version": "0.6.6",
"name": "Auto Tab Discard",
"description": "__MSG_app_description__",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion v3/worker/menu.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ import {interrupts} from './plugins/loader.mjs';
}));
}
// discard-tree for native
if (tab.highlighted && menuItemId === 'discard-tree') { // if a single not-active tab is called
else if (tab.highlighted && menuItemId === 'discard-tree') { // if a single not-active tab is called
const tbs = tabs.filter(t => t.highlighted);
if (tbs.length > 1) {
htabs.push(...tbs);
Expand Down

0 comments on commit a674763

Please sign in to comment.