Merge pull request #3583 from tridactyl/fixopen

Fix open not running in its tab
This commit is contained in:
Oliver Blanthorn 2021-04-17 19:50:11 +01:00 committed by GitHub
commit fcdcdc028f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1315,7 +1315,7 @@ export async function open(...urlarr: string[]) {
`, `,
) )
} else { } else {
const tab = await activeTab() const tab = await ownTab()
return openInTab(tab, {}, urlarr) return openInTab(tab, {}, urlarr)
} }
} }