mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-01-07 13:42:12 +01:00
enhance(server): Resolve #6286
This commit is contained in:
parent
69975c2fdd
commit
ebdbd6a84a
1 changed files with 3 additions and 1 deletions
|
@ -18,6 +18,8 @@ function getNoise() {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function genAid(date: Date): string {
|
export function genAid(date: Date): string {
|
||||||
|
const t = date.getTime();
|
||||||
|
if (isNaN(t)) throw 'Failed to create AID: Invalid Date';
|
||||||
counter++;
|
counter++;
|
||||||
return getTime(date.getTime()) + getNoise();
|
return getTime(t) + getNoise();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue