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

@ -59,6 +59,7 @@
- Fix: 照会ダイアログでap/showでローカルユーザーを解決した際@username@nullに飛ばされる問題を修正
- Fix: アイコンのデコレーションを付ける際にデコレーションが表示されなくなる問題を修正
- Fix: 管理中アカウント一覧で正しい表示が行われない問題を修正
- Fix: lookupページでリモートURLを指定した際に正しく動作しない問題を修正
### Server
- Feat: サーバー管理コマンド

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') {