mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
Fix bug
This commit is contained in:
parent
7e13d86930
commit
e6fac8e38f
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ function getTime(time: number) {
|
|||
}
|
||||
|
||||
function getRandom() {
|
||||
return counter.toString(36).padStart(2, '0').substr(2);
|
||||
return counter.toString(36).padStart(2, '0').slice(-2);
|
||||
}
|
||||
|
||||
export function genAid(date: Date): string {
|
||||
|
|
Loading…
Reference in a new issue