diff --git a/src/lib/xiaohongshu/user.js b/src/lib/xiaohongshu/user.js
index 91e1c78..cf82a54 100644
--- a/src/lib/xiaohongshu/user.js
+++ b/src/lib/xiaohongshu/user.js
@@ -46,11 +46,12 @@ let deal = async (ctx) => {
const renderNote = (notes) =>
notes.flatMap((n) =>
n.map(({ noteCard }) => ({
+ // Qi Reader用Id判断文章是否重复
+ Id: `${noteCard.cover.infoList.pop().url}`,
title: noteCard.displayTitle,
// 现在必须要登陆才能获取笔记链接,所以文章link都是{url}了(noteId为空)。
// 而Qi Reader把文章链接当作文章Id(如果源里没有Id字段的话),所以所有文章共用一个链接就导致了新文章被判定重复。
link: `${url}/${noteCard.noteId}`,
- id: `${noteCard.cover.infoList.pop().url}`,
description: `
${noteCard.displayTitle}`,
author: noteCard.user.nickname,
upvotes: noteCard.interactInfo.likedCount,