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:
Ed Lee 2019-05-19 11:04:16 +00:00
Родитель 1722aa9085
Коммит 3221e13d38
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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) {