Make instance more important than b in embedded player

This commit is contained in:
wvffle 2022-09-26 18:35:18 +00:00
commit b95249964d

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')