Merge pull request #1312 from Sommerwiesel/master

Rephrase the WebAssembly error on unsupported browser
This commit is contained in:
El RIDO 2024-05-06 12:26:58 +02:00 committed by GitHub
commit 0bdac4b4a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1068,7 +1068,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
if (mode === 'zlib' || mode === 'none') { if (mode === 'zlib' || mode === 'none') {
if (mode === 'zlib') { if (mode === 'zlib') {
if (typeof zlib === 'undefined') { if (typeof zlib === 'undefined') {
throw 'Error decompressing paste, due to missing WebAssembly support.' throw 'Error decompressing paste, your browser does not support WebAssembly. Please use another browser to view this paste.'
} }
data = zlib.inflate( data = zlib.inflate(
new Uint8Array(data) new Uint8Array(data)
@ -1305,7 +1305,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
spec[1] = atob(spec[1]); spec[1] = atob(spec[1]);
if (spec[7] === 'zlib') { if (spec[7] === 'zlib') {
if (typeof zlib === 'undefined') { if (typeof zlib === 'undefined') {
throw 'Error decompressing paste, due to missing WebAssembly support.' throw 'Error decompressing paste, your browser does not support WebAssembly. Please use another browser to view this paste.'
} }
} }
try { try {