mirror of
https://github.com/copy/v86.git
synced 2025-12-31 04:23:15 +00:00
Remove space after "if"
This commit is contained in:
parent
71584c833c
commit
ae35964179
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue