We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21d8601 commit a8085a9Copy full SHA for a8085a9
2 files changed
scripts/batch-analyze.js
@@ -77,7 +77,8 @@ async function main() {
77
for (let i = 0; i < papers.length; i++) {
78
const key = papers[i].arxivId || papers[i].paper_id;
79
if (resultMap.has(key)) {
80
- papers[i] = resultMap.get(key);
+ // 合并新结果到原论文,保留原论文的fetchedAt等字段
81
+ papers[i] = { ...papers[i], ...resultMap.get(key) };
82
}
83
84
// 直接写入文件,不走 createFileSaver 的合并逻辑(避免 normalizedId 失败导致数据丢失)
scripts/deep-analysis-only.js
@@ -71,7 +71,7 @@ async function runDeepAnalysis() {
71
72
73
74
75
76
// 直接写入文件,不走 createFileSaver 的合并逻辑
0 commit comments