From ac885aec6544be65f9258de674a01650c901d168 Mon Sep 17 00:00:00 2001 From: Mikhail Date: Wed, 10 Jul 2024 17:35:00 -0400 Subject: [PATCH] Fix asset download --- nksrv/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nksrv/Program.cs b/nksrv/Program.cs index a928063..be11632 100644 --- a/nksrv/Program.cs +++ b/nksrv/Program.cs @@ -25,7 +25,7 @@ namespace nksrv { internal class Program { - public static readonly HttpClient AssetDownloader = new(); + public static readonly HttpClient AssetDownloader = new(new HttpClientHandler() { AutomaticDecompression = DecompressionMethods.All}); static async Task Main() { Logger.UnregisterLogger();