Skip to content

Commit

Permalink
Fixed crash when you had items on Most Recently Used list, but invali…
Browse files Browse the repository at this point in the history
…d database connection
  • Loading branch information
BAndysc committed Jan 9, 2022
1 parent 270b1d2 commit bb4e96d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion WoWDatabaseEditor/ViewModels/QuickStartViewModel.cs
Expand Up @@ -179,7 +179,12 @@ public bool ShowAnniversaryBox
!applicationReleaseConfiguration.GetBool("SKIP_STAR_BOX").GetValueOrDefault() &&
!userSettings.Get<QuickStartSettings>().DismissedLeaveStarBox;

ReloadMruList();
try
{
ReloadMruList();
} catch (Exception)
{
}
}

private void ReloadMruList()
Expand Down

0 comments on commit bb4e96d

Please sign in to comment.