zotero / zotero-connectors

Chrome, Firefox, Edge, and Safari extensions for Zotero
https://www.zotero.org/download/connectors
Other
531 stars 124 forks source link

TypeError: Error in invocation of action.setIcon(object details, optional function callback): Error at parameter 'details': Error at property 'tabId': Value must be at least 0. #510

Closed annosoo closed 2 months ago

annosoo commented 2 months ago

zotero's icon in the browser is gone, and the document cannot be saved. The error is related to background.js

Uncaught (in promise) TypeError: Error in invocation of action.setIcon(object details, optional function callback): Error at parameter 'details': Error at property 'tabId': Value must be at least 0.

Here's the corresponding code in background.js

    function _showMessageButton(tab) {
        var icon = `${Zotero.platform}/zotero-z-32px-australis.png`;
        browser.action.setIcon({
            tabId: tab.id,
            path: `images/${icon}`
        });
        browser.action.setTitle({
            tabId: tab.id,
            title: "Zotero Connector"
        });
        browser.action.enable(tab.id);
    }
adomasven commented 2 months ago

Please post all feature requests and bug reports to the Zotero Forums. See CONTRIBUTING.md and How Zotero Support Works for more info.