Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop

This commit is contained in:
syuilo 2023-04-07 18:12:27 +09:00
commit 930724f9de
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "13.11.0-beta.4", "version": "13.11.0-beta.5",
"codename": "nasubi", "codename": "nasubi",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -59,7 +59,7 @@ export async function findClient() {
type: 'window', type: 'window',
}); });
for (const c of clients) { for (const c of clients) {
if (c.url.indexOf('?zen') < 0) return c; if (!new URL(c.url).searchParams.has('zen')) return c;
} }
return null; return null;
} }