From 7c13407558359f0b543fd097ad44198a02b2c2b1 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 11 Feb 2011 08:05:55 -0500 Subject: [PATCH] Fix scraping of tab groups on Minefield. --- common/content/buffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/buffer.js b/common/content/buffer.js index e5d93668..ef47115e 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -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];