feat: 减少从云端获取数据次数

This commit is contained in:
hzm
2026-03-07 19:54:17 +08:00
parent dab3ba3142
commit e5e2e472aa

View File

@@ -3197,7 +3197,7 @@ export default function HomePage() {
}
const localUpdatedAt = window.localStorage.getItem('localUpdatedAt');
if (localUpdatedAt && meta.updated_at && new Date(meta.updated_at) <= new Date(localUpdatedAt)) {
if (localUpdatedAt && meta.updated_at && new Date(meta.updated_at) < new Date(localUpdatedAt)) {
return;
}