summaryrefslogtreecommitdiff
path: root/bufio.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2018-12-11 17:56:32 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-12-11 17:56:32 -0500
commitb94530332910c0b85553dc91fa1912bce308df3c (patch)
tree86034754d12b04aa8ee5afe541c4b98b78ca5ed0 /bufio.ts
parenta691d9257b89cc210de6371138508c76aa288aba (diff)
Serve directory for file server & Fix bufio flush bug (denoland/deno_std#15)
Original: https://github.com/denoland/deno_std/commit/b78f4e9fbd477b026f1a309c64f4f8f75cd4d5d6
Diffstat (limited to 'bufio.ts')
-rw-r--r--bufio.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/bufio.ts b/bufio.ts
index 819c610f9..a1f673653 100644
--- a/bufio.ts
+++ b/bufio.ts
@@ -425,7 +425,7 @@ export class BufWriter implements Writer {
} else {
n = copyBytes(this.buf, p, this.n);
this.n += n;
- this.flush();
+ await this.flush();
}
nn += n;
p = p.subarray(n);