1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 21:45:59 +02:00

fix(frontend): lookupページでリモートURLを指定した際に正しく動作しない問題を修正

This commit is contained in:
syuilo
2025-08-27 10:15:11 +09:00
parent 25df56dfd0
commit 3e9118af3d
2 changed files with 2 additions and 1 deletions

View File

@@ -48,7 +48,7 @@ function _fetch_() {
if (res.type === 'User') {
mainRouter.replace('/@:acct/:page?', {
params: {
acct: res.host != null ? `${res.object.username}@${res.object.host}` : res.object.username,
acct: res.object.host != null ? `${res.object.username}@${res.object.host}` : res.object.username,
},
});
} else if (res.type === 'Note') {