ASP.NET Core Compression Middleware - Empty Reponse
问题 I am using some custom compression middleware from this repository (pasted below). Upon the first request, the content is compressed just fine. For every request after that, the response comes back as completely empty (with a Content-Length of 0). This only started happening after migrating from ASP.NET Core RC2 to RTM. Does anyone know why this is happening? CompressionMiddleware: public class CompressionMiddleware { private readonly RequestDelegate _next; public CompressionMiddleware