Browse Source

fix compilation

Equbuxu 2 years ago
parent
commit
ee6e2a579e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PixiEditor/ViewModels/SubViewModels/Main/MiscViewModel.cs

+ 1 - 1
src/PixiEditor/ViewModels/SubViewModels/Main/MiscViewModel.cs

@@ -29,7 +29,7 @@ internal class MiscViewModel : SubViewModel<ViewModelMain>
         catch (Exception e)
         {
             NoticeDialog.Show(title: "Error", message: $"Couldn't open the address {url} in your default browser");
-            await CrashHelper.SendExceptionInfoToWebhook(e).Wait();
+            await CrashHelper.SendExceptionInfoToWebhook(e);
         }
     }
 }