Skip to content

Commit a82b9dd

Browse files
committed
Resolve requested changes
1 parent ce1dfbc commit a82b9dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Files.App/ViewModels/MainPageViewModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ await Task.WhenAll(
320320

321321
// Command methods
322322

323-
private void ExecuteReviewAppCommand()
323+
private async void ExecuteReviewAppCommand()
324324
{
325325
UserSettingsService.ApplicationSettingsService.ClickedToReviewApp = true;
326326
OnPropertyChanged(nameof(ShowReviewPrompt));
@@ -329,6 +329,7 @@ private void ExecuteReviewAppCommand()
329329
{
330330
var storeContext = StoreContext.GetDefault();
331331
InitializeWithWindow.Initialize(storeContext, MainWindow.Instance.WindowHandle);
332+
await storeContext.RequestRateAndReviewAppAsync();
332333
}
333334
catch (Exception) { }
334335
}

0 commit comments

Comments
 (0)