kesselborn / conex

Firefox extension
Mozilla Public License 2.0
174 stars 16 forks source link

tabs undefined error #282

Closed ximex closed 5 years ago

ximex commented 5 years ago

if i debug the add on i got many errors ot these: TypeError: tabs[0] is undefined conex-background.js:446:5

browser.windows.onFocusChanged.addListener(windowId => {
  browser.tabs.query({active: true, windowId: windowId}).then(tabs => {
    lastCookieStoreId = tabs[0].cookieStoreId;
  });
});

Firefox Nightly 66 Linux

kesselborn commented 5 years ago

Thanks, will Look into this

Am 05.01.2019 um 15:58 schrieb Thomas Rupprecht notifications@github.com:

if i debug the add on i got many errors ot these: TypeError: tabs[0] is undefined conex-background.js:446:5

browser.windows.onFocusChanged.addListener(windowId => { browser.tabs.query({active: true, windowId: windowId}).then(tabs => { lastCookieStoreId = tabs[0].cookieStoreId; }); }); — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.