Skip to content

Commit

Permalink
SeventhHeavenUI: Improve error message if catalog fails to load
Browse files Browse the repository at this point in the history
  • Loading branch information
julianxhokaxhiu committed Jan 14, 2024
1 parent bc892da commit fcfa2b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SeventhHeavenUI/ViewModels/CatalogViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ internal Task CheckForCatalogUpdatesAsync(bool forceCheck = false)
catch (Exception ex)
{
sub.FailureCount++;
Sys.Message(new WMessage() { Text = $"{ResourceHelper.Get(StringKey.FailedToLoadSubscription)} {subUrl}: {ex.Message}", LoggedException = ex });
Sys.Message(new WMessage() { Text = $"{ResourceHelper.Get(StringKey.FailedToLoadSubscription)} {subUrl}: {ex.Message} {ex.InnerException.Message}", LoggedException = ex });
}
finally
{
Expand Down

0 comments on commit fcfa2b3

Please sign in to comment.