fix(backend): reject malformed timestamp (#12554)

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-12-03 14:38:42 +09:00
committed by GitHub
parent 34223f3da4
commit af15f8d09d
8 changed files with 49 additions and 6 deletions

View File

@@ -38,3 +38,7 @@ export function parseMeid(id: string): { date: Date; } {
date: new Date(parseInt(id.slice(0, 12), 16) - 0x800000000000),
};
}
export function isSafeMeidT(t: number): boolean {
return t > 0;
}