improve sharable hash

This commit is contained in:
Ruben Fiszel
2024-07-02 14:50:32 +02:00
parent 0cb98af61e
commit 2f374ba7ef
+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 ''