From b40eb97d5372503c672c9d2a7ed2cd878b2ce068 Mon Sep 17 00:00:00 2001 From: Myk Date: Sun, 28 May 2017 12:45:08 +1000 Subject: [PATCH] Fix Chicken bits from #2023 --- Core/Net/NetAsyncDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Net/NetAsyncDownloader.cs b/Core/Net/NetAsyncDownloader.cs index 7305e02a5b..6c1acca257 100644 --- a/Core/Net/NetAsyncDownloader.cs +++ b/Core/Net/NetAsyncDownloader.cs @@ -84,7 +84,7 @@ private void Download(ICollection> urls) } // adding chicken bits - if (Platform.IsWindows || System.Environment.GetEnvironmentVariable("KSP_CKAN_USE_CURL") != null) { + if (Platform.IsWindows || System.Environment.GetEnvironmentVariable("KSP_CKAN_USE_CURL") == null) { DownloadNative(); } else