Skip to content

Commit 07a1074

Browse files
committed
refactor: leaderboard next data start from 2015.1
Signed-off-by: frank-zsy <syzhao1988@126.com>
1 parent 5ce9987 commit 07a1074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/leaderboardNext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ import { existsSync, mkdirSync, writeFileSync } from "fs";
5959

6060
const now = new Date();
6161
now.setMonth(now.getMonth() - 1);
62-
const startYear = now.getFullYear() - 10, startMonth = now.getMonth() + 1;
62+
const startYear = 2015, startMonth = 1;
6363
const endYear = now.getFullYear(), endMonth = now.getMonth() + 1;
6464
const limit = 300;
6565
for (const scopeLabel of scopeLabels) {

0 commit comments

Comments
 (0)