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 6c0eb3a commit 77b7f3cCopy full SHA for 77b7f3c
schedule/daily-check.js
@@ -37,7 +37,7 @@ async function run(d) {
37
mySolutions[login] = Array(91);
38
}
39
// 由于下面的一行代码,导致了会插入一个完全空的行。这就是因为打过卡,但是都不是当天打的
40
- if (getDay(new Date(comment.created_at).getTime()) !== d) return;
+ if (getDay(new Date(comment.created_at).getTime()) > d) return;
41
mySolutions[login][d - 1] = {
42
// title: problem.title,
43
url: comment.html_url,
0 commit comments