From b95249964dfae3c43727c495516089fee03b7c3e Mon Sep 17 00:00:00 2001 From: wvffle Date: Mon, 26 Sep 2022 18:35:18 +0000 Subject: [PATCH] Make `instance` more important than `b` in embedded player --- front/public/embed.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/public/embed.html b/front/public/embed.html index 001ec2959..dbf4b9096 100644 --- a/front/public/embed.html +++ b/front/public/embed.html @@ -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')