From a0ccda2c61d8a60cb52de79bfe4db174c24b0102 Mon Sep 17 00:00:00 2001 From: ThinaticSystem Date: Sat, 16 Jul 2022 18:22:42 +0900 Subject: [PATCH] ; --- packages/client/src/components/notification.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/notification.vue b/packages/client/src/components/notification.vue index fa5dc9ee9..5f4d41969 100644 --- a/packages/client/src/components/notification.vue +++ b/packages/client/src/components/notification.vue @@ -167,7 +167,7 @@ function openRenoteDestination(renoteNotification: misskey.entities.Notification os.api('users/show', {userId: renoteNotification.user.id}).then((user: misskey.entities.UserDetailed) => { if (user.host != null && user.followersCount === 0) { // リモートユーザーかつローカルの人間が誰もフォローしていない(最新の投稿が取得できない)ユーザー - if (user.url === null) { throw new Error('User page URL is Null') }; + if (user.url === null) { throw new Error('User page URL is Null'); }; window.open(user.url, '_blank', 'rel="nofollow noopener"'); } else { os.pageWindow(notePage(renoteNotification.note));