mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-31 15:32:27 +01:00
Fix scraping of tab groups on Minefield.
This commit is contained in:
@@ -1430,7 +1430,7 @@ var Buffer = Module("buffer", {
|
||||
let tabGroups = {};
|
||||
tabs.getGroups();
|
||||
tabs.allTabs.forEach(function (tab, i) {
|
||||
let group = (tab.tabItem || defItem).parent || defItem.parent;
|
||||
let group = (tab.tabItem || tab._tabViewTabItem || defItem).parent || defItem.parent;
|
||||
if (!set.has(tabGroups, group.id))
|
||||
tabGroups[group.id] = [group.getTitle(), []];
|
||||
group = tabGroups[group.id];
|
||||
|
||||
Reference in New Issue
Block a user