1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-21 01:45:33 +02:00
This commit is contained in:
syuilo
2025-08-27 10:14:17 +09:00
parent 231ccae006
commit 25df56dfd0
6 changed files with 19 additions and 24 deletions

View File

@@ -40,7 +40,7 @@ async function install() {
code.value = null;
router.push('/settings/plugin');
} catch (err) {
} catch (err: any) {
os.alert({
type: 'error',
title: 'Install failed',

View File

@@ -53,7 +53,7 @@ function getInstanceIcon(instance: Misskey.entities.FederationInstance): string
misskeyApiGet('federation/instances', {
sort: '+pubSub',
limit: 20,
blocked: 'false',
blocked: false,
}).then(_instances => {
instances.value = _instances;
});