Skip to content

Commit

Permalink
Merge #2058 Fix Chicken bits from #2023
Browse files Browse the repository at this point in the history
  • Loading branch information
politas committed May 28, 2017
2 parents 98e7da3 + b40eb97 commit 6430972
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Core/Net/NetAsyncDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private void Download(ICollection<KeyValuePair<Uri, long>> 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
Expand Down

0 comments on commit 6430972

Please sign in to comment.