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