From 14f28d27e6c56cb09bacea98fe736b62b5ed0a93 Mon Sep 17 00:00:00 2001 From: ikasoba <57828948+ikasoba@users.noreply.github.com> Date: Sun, 17 Dec 2023 13:41:32 +0900 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/pages/channel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue index ea8a130d16..5949b50040 100644 --- a/packages/frontend/src/pages/channel.vue +++ b/packages/frontend/src/pages/channel.vue @@ -121,7 +121,7 @@ watch(() => props.channelId, async () => { tab.value = 'timeline'; } - if (favorited.value && channel.value.lastNotedAt) { + if ((favorited.value || channel.value.isFollowing) && channel.value.lastNotedAt) { const lastReadedAt: number = miLocalStorage.getItemAsJson(`channelLastReadedAt:${channel.value.id}`) ?? 0; const lastNotedAt = Date.parse(channel.value.lastNotedAt);