mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 23:34:47 -05:00
fix: Use Buffer.writeSync in MultipartBuilder (#7542)
This commit is contained in:
parent
46bf660e36
commit
3e98d9091f
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@
|
|||
}
|
||||
buf += `\r\n`;
|
||||
|
||||
this.writer.write(encoder.encode(buf));
|
||||
this.writer.writeSync(encoder.encode(buf));
|
||||
};
|
||||
|
||||
#writeFileHeaders = (
|
||||
|
|
Loading…
Reference in a new issue