eslint
Some checks failed
Deploy / deploy (push) Failing after 1m23s

This commit is contained in:
Lee
2024-09-30 07:20:58 +01:00
parent ca6f43d443
commit b56229e58b
3 changed files with 3 additions and 4 deletions

View File

@ -108,7 +108,7 @@ PlayerSchema.methods.getHistoryPrevious = function (amount: number): {
const toReturn: { [key: string]: PlayerHistory } = {};
const history = sortPlayerHistory(this.getStatisticHistory());
for (let [date, stat] of history) {
for (const [date, stat] of history) {
const parsedDate = new Date(date);
if (getDaysAgo(parsedDate) + 1 <= amount) {
toReturn[date] = stat;