Skip to content

Commit

Permalink
updated at 2023-11-04 23:17 by mc git-up
Browse files Browse the repository at this point in the history
  • Loading branch information
magicdawn committed Nov 4, 2023
1 parent 1fb0aad commit 21c900c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function nodefreeGetUrls(subscribe: NodefreeSubscribe): string[] {
`https://nodefree.org/dy/${m.format('YYYY')}/${m.format('MM')}/${m.format('YYYYMMDD')}.yaml`

const urls: string[] = []
for (let i = 1; i <= recentDays; i++) {
for (let i = 0; i < recentDays; i++) {
// 从前一天开始, 当天的经常 404 报错
const m = moment().subtract(i, 'days')
urls.push(tpl(m))
Expand Down

0 comments on commit 21c900c

Please sign in to comment.