improve sharable hash

This commit is contained in:
Ruben Fiszel
2024-07-02 14:50:32 +02:00
parent 2300565f8e
commit 038841f17d
+1 -1
View File
@@ -678,7 +678,7 @@ export function computeSharableHash(args: any) {
})
try {
let r = new URLSearchParams(nargs).toString()
return r
return r.length > 1000000 ? '' : r
} catch (e) {
console.error('Error computing sharable hash', e)
return ''