mirror of
https://github.com/oven-sh/bun
synced 2026-02-17 06:12:08 +00:00
fix writer.end
This commit is contained in:
@@ -1069,7 +1069,7 @@ pub fn WindowsStreamingWriter(
|
||||
}
|
||||
|
||||
fn hasPendingData(this: *WindowsWriter) bool {
|
||||
return (this.outgoing.isNotEmpty() and this.current_payload.isNotEmpty());
|
||||
return (this.outgoing.isNotEmpty() or this.current_payload.isNotEmpty());
|
||||
}
|
||||
|
||||
fn isDone(this: *WindowsWriter) bool {
|
||||
|
||||
Reference in New Issue
Block a user