diff --git a/CHANGELOG.md b/CHANGELOG.md index d72863ca36..e2e6fe88b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,10 @@ All notable changes to this project will be documented in this file. -## v1.22.3-dev +## v1.22.3 +### Bugfixes +- [core] Fix broken Chicken bits from #2023 (#2058 by: politas) ## v1.22.2 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