Nice little directory browser :D
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dont compress attached HTML files, only normal responses

+2 -1
+2 -1
Program.cs
··· 72 72 73 73 if ( 74 74 context.Response.ContentType?.StartsWith("text/html") != true 75 - /* || TODO: don't compress when serving HTML files found by Utatane!! */ ) { 75 + || context.Response.Headers.ContentDisposition.Any(x => x != null && x.StartsWith("attachment")) 76 + ) { 76 77 // oops my bad gangalang 77 78 // ok now put it back 78 79 memoryStream.Position = 0;