Luke Pulverenti 8 anni fa
parent
commit
456d5e5b76
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      SocketHttpListener.Portable/Net/HttpConnection.cs

+ 1 - 1
SocketHttpListener.Portable/Net/HttpConnection.cs

@@ -211,7 +211,7 @@ namespace SocketHttpListener.Net
             {
                 context.Response.DetermineIfChunked();
 
-                if (context.Response.SendChunked || isExpect100Continue || context.Request.IsWebSocketRequest)
+                if (context.Response.SendChunked || isExpect100Continue || context.Request.IsWebSocketRequest || true)
                 {
                     o_stream = new ResponseStream(stream, context.Response, _memoryStreamFactory, _textEncoding);
                 }