We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd8044e commit b473d4fCopy full SHA for b473d4f
packages/archive/src/lib/list.ts
@@ -72,7 +72,7 @@ export default async function getPostList(
72
!(post.id in saved) || // 没有保存过亦如此
73
(post.recentReply && // 有回复并
74
(!saved[post.id] || // 上一次保存时没有回复或
75
- saved[post.id] !== post.recentReply.id)), // 最新回复 id 不一致
+ saved[post.id] < post.recentReply.id)), // 存在更新的回复(该 id 随时间单调递增)
76
)
77
.map((post) => post.id);
78
}
0 commit comments