Skip to content

Commit

Permalink
Merge Print message for unknown install exception #3164
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Oct 4, 2020
2 parents 07e44f1 + 0467d19 commit 7e575e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
- [Core] Satisfy dependencies with installed incompatible modules (#3137 by: HebaruSan; reviewed: DasSkelett)
- [GUI] Extend -single-instance fix to 1.10 (#3153 by: DasSkelett; reviewed: HebaruSan)
- [GUI] Escape '&' in mod list, fix path in GUIConfig.xml exception (#3149 by: DasSkelett; reviewed: HebaruSan)
- [GUI] Print message for unknown install exception (#3164 by: DasSkelett; reviewed: HebaruSan)

### Internal

Expand Down
4 changes: 4 additions & 0 deletions GUI/Main/MainInstall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,10 @@ private void PostInstallMods(object sender, RunWorkerCompletedEventArgs e)
currentUser.RaiseMessage(dlcMsg);
currentUser.RaiseError(dlcMsg);
break;

default:
currentUser.RaiseMessage(e.Error.Message);
break;
}

FailWaitDialog(
Expand Down

0 comments on commit 7e575e0

Please sign in to comment.