Remove space after "if"

This commit is contained in:
Дмитрий Ценеков 2025-11-15 21:02:28 +03:00 committed by Fabian
parent 71584c833c
commit ae35964179

View file

@ -112,7 +112,7 @@ ServerFileStorageWrapper.prototype.load_from_server = function(sha256sum, file_s
load_file(this.baseurl + sha256sum, { done: async buffer =>
{
let data = new Uint8Array(buffer);
if (sha256sum.endsWith(".zst"))
if(sha256sum.endsWith(".zst"))
{
data = new Uint8Array(
this.zstd_decompress(file_size, data)