diff --git a/packages/frontend/src/_boot_.ts b/packages/frontend/src/_boot_.ts index c90cc6bdd0..24fafce18c 100644 --- a/packages/frontend/src/_boot_.ts +++ b/packages/frontend/src/_boot_.ts @@ -12,7 +12,7 @@ import '@/style.scss'; import { mainBoot } from '@/boot/main-boot.js'; import { subBoot } from '@/boot/sub-boot.js'; -const subBootPaths = ['/share', '/auth', '/miauth', '/oauth', '/signup-complete']; +const subBootPaths = ['/share', '/auth', '/miauth', '/oauth', '/signup-complete', '/install-extensions']; if (subBootPaths.some(i => location.pathname === i || location.pathname.startsWith(i + '/'))) { subBoot(); diff --git a/packages/frontend/src/pages/install-extensions.vue b/packages/frontend/src/pages/install-extensions.vue index 3f4a846586..3da6af1a04 100644 --- a/packages/frontend/src/pages/install-extensions.vue +++ b/packages/frontend/src/pages/install-extensions.vue @@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only - + @@ -34,8 +34,7 @@ SPDX-License-Identifier: AGPL-3.0-only {{ errorKV?.title }} {{ errorKV?.description }} - {{ i18n.ts.close }} - {{ i18n.ts.goToMisskey }} + {{ i18n.ts.close }} @@ -74,12 +73,12 @@ const hash = ref(null); const data = ref(null); -function close(): void { - window.close(); -} - -function goToMisskey(): void { - location.href = '/'; +function close_(): void { + if (window.history.length === 1) { + window.close(); + } else { + window.history.back(); + } } async function fetch() { @@ -207,7 +206,7 @@ async function install() { await installPlugin(data.value.raw, data.value.meta as AiScriptPluginMeta); os.success(); window.setTimeout(() => { - close(); + close_(); }, 3000); } catch (err) { errorKV.value = { @@ -223,7 +222,7 @@ async function install() { await installTheme(data.value.raw); os.success(); window.setTimeout(() => { - close(); + close_(); }, 3000); } }