Skip to content

Commit

Permalink
修正去重条件
Browse files Browse the repository at this point in the history
  • Loading branch information
Izumiko committed May 18, 2024
1 parent ed0de6c commit 433bad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ede.js
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@
// 去重
comments = comments.filter((comment, index, self) =>
index === self.findIndex((t) => (
t.p === comment.p
t.cid === comment.cid
))
);
showDebugInfo('弹幕下载成功: ' + comments.length);
Expand Down

0 comments on commit 433bad6

Please sign in to comment.