Make `instance` more important than `b` in embedded player

This commit is contained in:
wvffle 2022-09-26 18:35:18 +00:00
parent 306a2e9738
commit b95249964d
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
// Params
const params = new URL(location.href).searchParams
const baseUrl = params.get('b') ?? params.get('instance') ?? ''
const baseUrl = params.get('instance') ?? params.get('b') ?? ''
const type = params.get('type')
const id = params.get('id')