check if extension before opening all

This commit is contained in:
zombieFox
2021-09-12 15:31:00 +01:00
parent a03d403f55
commit 318993d5cc

View File

@ -182,6 +182,8 @@ export const GroupArea = function({
}), }),
open: () => { open: () => {
if ('tabs' in chrome) {
if (state.get.current().bookmark.newTab) { if (state.get.current().bookmark.newTab) {
groupData.group.items.forEach((item, i) => { groupData.group.items.forEach((item, i) => {
@ -200,6 +202,8 @@ export const GroupArea = function({
}; };
};
} }
}; };