Skip to content

Commit

Permalink
Fixes #177 (perhaps)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesselborn committed Feb 21, 2018
1 parent eda9ae7 commit 71bf6ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion conex-background.js
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,8 @@ browser.tabs.onCreated.addListener(tab => {
});

browser.tabs.onCreated.addListener(tab => {
if(tab.openerTabId == undefined
if(tab.url != 'about:newtab'
&& tab.openerTabId == undefined
&& tab.cookieStoreId == defaultCookieStoreId) {
newTabs.add(tab.id);
}
Expand Down

0 comments on commit 71bf6ed

Please sign in to comment.