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:
@@ -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') {
|
||||
|
||||
Reference in New Issue
Block a user