mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
code review: not all windows have tabs
This commit is contained in:
parent
cc7cd41c5c
commit
429d3f5017
1 changed files with 5 additions and 0 deletions
|
@ -789,6 +789,11 @@ vAPI.tabs.getAll = function(window) {
|
|||
continue;
|
||||
}
|
||||
|
||||
// This can happens if a tab-less window is currently opened.
|
||||
if ( !tabBrowser.tabs ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
for ( tab of tabBrowser.tabs ) {
|
||||
tabs.push(tab);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue