diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-26 09:08:00 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-26 09:08:00 +0900 |
| commit | 9e5c8d94bff0352bca3b15fd75a7c6ccaa1df2ff (patch) | |
| tree | e6e86b8b5297d615890ce2f35692d95c78e3fd9e /packages/frontend/src/pages/install-extensions.vue | |
| parent | refactoe (diff) | |
| download | misskey-9e5c8d94bff0352bca3b15fd75a7c6ccaa1df2ff.tar.gz misskey-9e5c8d94bff0352bca3b15fd75a7c6ccaa1df2ff.tar.bz2 misskey-9e5c8d94bff0352bca3b15fd75a7c6ccaa1df2ff.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/pages/install-extensions.vue')
| -rw-r--r-- | packages/frontend/src/pages/install-extensions.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/install-extensions.vue b/packages/frontend/src/pages/install-extensions.vue index 1b3c6616cc..4b87e0da6b 100644 --- a/packages/frontend/src/pages/install-extensions.vue +++ b/packages/frontend/src/pages/install-extensions.vue @@ -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, |