diff --git a/http2.d b/http2.d index b405a44..f7b2f4f 100644 --- a/http2.d +++ b/http2.d @@ -4889,7 +4889,7 @@ class WebSocket { wss.fin = true; wss.masked = this.isClient; wss.opcode = WebSocketOpcode.close; - wss.data = cast(ubyte[]) reason.dup; + wss.data = [ubyte((code >> 8) & 0xff), ubyte(code & 0xff)] ~ cast(ubyte[]) reason.dup; wss.send(&llsend); readyState_ = CLOSING;