surely now
All checks were successful
Deploy / deploy (push) Successful in 2m36s

This commit is contained in:
Lee
2024-09-28 06:37:10 +01:00
parent 0410f6b324
commit 963faa23f3
3 changed files with 12 additions and 7 deletions

View File

@ -1,6 +1,6 @@
import mongoose, { Document, Schema } from "mongoose";
import { PlayerHistory } from "@/common/player/player-history";
import { formatDate, getMidnightAlignedDate } from "@/common/time-utils";
import { formatDateMinimal, getMidnightAlignedDate } from "@/common/time-utils";
import ScoreSaberPlayer from "@/common/model/player/impl/scoresaber-player";
// Interface for Player Document
@ -70,7 +70,9 @@ PlayerSchema.methods.getLastTracked = function (): Date {
PlayerSchema.methods.getHistory = function (date: Date): PlayerHistory {
return (
this.statisticHistory.get(formatDate(getMidnightAlignedDate(date))) || {}
this.statisticHistory.get(
formatDateMinimal(getMidnightAlignedDate(date)),
) || {}
);
};
@ -92,7 +94,7 @@ PlayerSchema.methods.setStatisticHistory = function (
this.statisticHistory = new Map();
}
return this.statisticHistory.set(
formatDate(getMidnightAlignedDate(date)),
formatDateMinimal(getMidnightAlignedDate(date)),
data,
);
};