fix(backend): reject malformed timestamp (#12554)
This commit is contained in:

committed by
GitHub

parent
34223f3da4
commit
af15f8d09d
@@ -34,3 +34,7 @@ export function parseAid(id: string): { date: Date; } {
|
||||
const time = parseInt(id.slice(0, 8), 36) + TIME2000;
|
||||
return { date: new Date(time) };
|
||||
}
|
||||
|
||||
export function isSafeAidT(t: number): boolean {
|
||||
return t > TIME2000;
|
||||
}
|
||||
|
Reference in New Issue
Block a user