Skip to content

Commit

Permalink
Fix out of memory error
Browse files Browse the repository at this point in the history
  • Loading branch information
D0ugins committed Mar 21, 2022
1 parent b40f02f commit 5d02ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/wiki/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Wiki {
if (!skipped) console.error(data, round.links[0]);
this.errors.push({ ...round, error, skipped });
} else {
this.processed.push(data);
this.processed.push((data as Round).gid);
if ((data as Round).status === 'PENDING') this.downloadQueue.add(data as Round);
}
}
Expand Down

0 comments on commit 5d02ef2

Please sign in to comment.