Skip to content

Commit

Permalink
Another minor fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
GeReV committed May 17, 2021
1 parent 025af39 commit 0b7a5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Catalog.Wpf/ViewModel/EditGameViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ public ViewStatus Status

public string StatusDescription => Status switch
{
ViewStatus.Error => $"Error: {CurrentException.Message}",
ViewStatus.Error => CurrentException == null ? "Unknown Error" : $"Error: {CurrentException.Message}",
var status => status.GetDescription()
};

Expand Down

0 comments on commit 0b7a5c0

Please sign in to comment.