- From: Adam Rice <notifications@github.com>
- Date: Tue, 28 Mar 2017 05:05:23 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 28 March 2017 12:05:58 UTC
ricea commented on this pull request. > @@ -4230,7 +4230,10 @@ promises returned by its <a lt="writable stream writer">writer</a>'s {{WritableS return new WritableStream({ start(controller) { - ws.onerror = () => controller.error(new Error("The WebSocket errored!")); + ws.onerror = () => { + controller.error(new Error("The WebSocket errored!")); + ws.onclose = null; That should work. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/713#pullrequestreview-29429252
Received on Tuesday, 28 March 2017 12:05:58 UTC