File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ export default class LocalTabs implements OrderFolderResource<typeof ItemLocatio
288288 // Create a dummy tab in the parent window to hold the group
289289 const dummyTab = await this . queue . add ( ( ) =>
290290 browser . tabs . create ( {
291- windowId : typeof folder . parentId === 'string' ? parseInt ( folder . parentId ) : folder . parentId ,
291+ windowId : folder . parentId ,
292292 url : 'about:blank' ,
293293 active : false
294294 } )
@@ -299,7 +299,7 @@ export default class LocalTabs implements OrderFolderResource<typeof ItemLocatio
299299 browser . tabs . group ( {
300300 tabIds : [ dummyTab . id ] ,
301301 createProperties : {
302- windowId : typeof folder . parentId === 'string' ? parseInt ( folder . parentId ) : folder . parentId
302+ windowId : folder . parentId
303303 }
304304 } )
305305 )
@@ -320,7 +320,7 @@ export default class LocalTabs implements OrderFolderResource<typeof ItemLocatio
320320 } catch ( e ) {
321321 Logger . log ( 'Failed to remove dummy tab' , e )
322322 }
323- } , 1000 )
323+ } , 2000 )
324324
325325 await awaitTabsUpdated ( )
326326 return groupId
You can’t perform that action at this time.
0 commit comments