Skip to content

Commit

Permalink
fix: workaround for 1882822 sometimes causing drag-and-drop to new wi…
Browse files Browse the repository at this point in the history
…ndow to fail (#1493)
  • Loading branch information
dsuedholt authored Mar 3, 2024
1 parent 19b4eee commit 8c6ecb8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/services/windows.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ export async function createWithTabs(
): Promise<boolean> {
if (!conf) conf = {}

// Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1882822
conf.url = 'about:blank'

const moveTabs = conf.tabId === MOVEID
if (moveTabs) delete conf.tabId

Expand Down

0 comments on commit 8c6ecb8

Please sign in to comment.