1
0
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:
Kris Maglione
2011-02-11 08:05:55 -05:00
parent e2af5228ad
commit 7c13407558

View File

@@ -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];