We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e82805 commit 460ad60Copy full SHA for 460ad60
src/Files.App/ViewModels/MainPageViewModel.cs
@@ -325,8 +325,12 @@ private void ExecuteReviewAppCommand()
325
UserSettingsService.ApplicationSettingsService.ClickedToReviewApp = true;
326
OnPropertyChanged(nameof(ShowReviewPrompt));
327
328
- var storeContext = StoreContext.GetDefault();
329
- InitializeWithWindow.Initialize(storeContext, MainWindow.Instance.WindowHandle);
+ try
+ {
330
+ var storeContext = StoreContext.GetDefault();
331
+ InitializeWithWindow.Initialize(storeContext, MainWindow.Instance.WindowHandle);
332
+ }
333
+ catch (Exception) { }
334
}
335
336
private void ExecuteDismissReviewPromptCommand()
0 commit comments