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

committed by
GitHub

parent
34223f3da4
commit
af15f8d09d
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user