This commit is contained in:
ikasoba 2023-12-17 13:41:32 +09:00
parent 587736bc9a
commit 14f28d27e6
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ watch(() => props.channelId, async () => {
tab.value = 'timeline'; 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 lastReadedAt: number = miLocalStorage.getItemAsJson(`channelLastReadedAt:${channel.value.id}`) ?? 0;
const lastNotedAt = Date.parse(channel.value.lastNotedAt); const lastNotedAt = Date.parse(channel.value.lastNotedAt);