From a67476346a82c00afc934110adc568c623a67b7c Mon Sep 17 00:00:00 2001 From: Richard Neomy Date: Wed, 9 Nov 2022 06:11:34 -0500 Subject: [PATCH] version 0.6.6 --- v3/manifest.json | 2 +- v3/worker/menu.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/v3/manifest.json b/v3/manifest.json index 1150ff6..7ac4c17 100644 --- a/v3/manifest.json +++ b/v3/manifest.json @@ -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", diff --git a/v3/worker/menu.mjs b/v3/worker/menu.mjs index 19639f7..cce7808 100644 --- a/v3/worker/menu.mjs +++ b/v3/worker/menu.mjs @@ -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);