зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1552538 - Check for gBrowser before checking for pinned tabs r=r1cky
Differential Revision: https://phabricator.services.mozilla.com/D31735 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
1722aa9085
Коммит
3221e13d38
|
@ -298,7 +298,7 @@ const TargetingGetters = {
|
|||
},
|
||||
get hasPinnedTabs() {
|
||||
for (let win of Services.wm.getEnumerator("navigator:browser")) {
|
||||
if (win.closed) {
|
||||
if (win.closed || !win.ownerGlobal.gBrowser) {
|
||||
continue;
|
||||
}
|
||||
if (win.ownerGlobal.gBrowser.visibleTabs.filter(t => t.pinned).length) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче