From f5646fe8a82fa1f42e10ca49ca088242b0699bcc Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 25 Mar 2023 20:18:53 +0800 Subject: [PATCH] Attempt to fix weird "latest" item bug --- src/pages/following.jsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/pages/following.jsx b/src/pages/following.jsx index 4032ed9e..c87be920 100644 --- a/src/pages/following.jsx +++ b/src/pages/following.jsx @@ -54,9 +54,12 @@ function Following({ title, path, id, ...props }) { .next(); let { value } = results; console.log('checkForUpdates', latestItem.current, value); - value = filteredItems(value, 'home'); - if (value?.length && value.some((item) => !item.reblog)) { - return true; + if (value?.length) { + latestItem.current = value[0].id; + value = filteredItems(value, 'home'); + if (value.some((item) => !item.reblog)) { + return true; + } } return false; } catch (e) {