Skip to content

Commit

Permalink
Merge #2528 Show innermost download exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
politas committed Oct 7, 2018
2 parents e92926d + 93ebb53 commit 8be152d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ All notable changes to this project will be documented in this file.
- [Netkan] Purge downloads that failed to index from Netkan cache (#2526 by: HebaruSan; reviewed: politas)
- [Multiple] Add download count column to GUI (#2518 by: HebaruSan; reviewed: politas)

### Bugfixes
- [GUI] Show innermost download exceptions (#2528 by: HebaruSan; reviewed: politas)

## v1.25.3 (Woomera)

### Features
Expand Down
2 changes: 1 addition & 1 deletion Core/Types/Kraken.cs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public ModuleDownloadErrorsKraken(IList<CkanModule> modules, DownloadErrorsKrake
foreach (var kvp in kraken.exceptions)
{
exceptions.Add(new KeyValuePair<CkanModule, Exception>(
modules[kvp.Key], kvp.Value
modules[kvp.Key], kvp.Value.GetBaseException() ?? kvp.Value
));
}
}
Expand Down

0 comments on commit 8be152d

Please sign in to comment.