1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-12 09:24:06 +02:00
This commit is contained in:
syuilo
2025-08-26 09:08:00 +09:00
parent 120af977a9
commit 9e5c8d94bf
14 changed files with 39 additions and 32 deletions

View File

@@ -80,7 +80,7 @@ function close_(): void {
}
}
async function fetch() {
async function _fetch_() {
if (!url.value || !hash.value) {
errorKV.value = {
title: i18n.ts._externalResourceInstaller._errors._invalidParams.title,
@@ -229,7 +229,7 @@ async function install() {
const urlParams = new URLSearchParams(window.location.search);
url.value = urlParams.get('url');
hash.value = urlParams.get('hash');
fetch();
_fetch_();
definePage(() => ({
title: i18n.ts._externalResourceInstaller.title,