This commit is contained in:
Ruben Fiszel
2025-03-28 00:05:02 +01:00
parent e72ff9cde1
commit 5984bb2730
+1 -1
View File
@@ -45,7 +45,7 @@ export function createHash() {
}
export function createLongHash() {
return Math.random().toString(36).substring(2) + Math.random().toString(36).substring(2)
return 'h' + Math.random().toString(36).substring(2) + Math.random().toString(36).substring(2)
}
export function langToExt(lang: string): string {