Skip to content

Commit bb4e96d

Browse files
committed
Fixed crash when you had items on Most Recently Used list, but invalid database connection
1 parent 270b1d2 commit bb4e96d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

WoWDatabaseEditor/ViewModels/QuickStartViewModel.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,12 @@ public QuickStartViewModel(ISolutionItemProvideService solutionItemProvideServic
179179
!applicationReleaseConfiguration.GetBool("SKIP_STAR_BOX").GetValueOrDefault() &&
180180
!userSettings.Get<QuickStartSettings>().DismissedLeaveStarBox;
181181

182-
ReloadMruList();
182+
try
183+
{
184+
ReloadMruList();
185+
} catch (Exception)
186+
{
187+
}
183188
}
184189

185190
private void ReloadMruList()

0 commit comments

Comments
 (0)