Browse Source

Use different exception send method

Krzysztof Krysiński 3 weeks ago
parent
commit
090ccc921c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PixiEditor/ViewModels/SubViewModels/UpdateViewModel.cs

+ 1 - 1
src/PixiEditor/ViewModels/SubViewModels/UpdateViewModel.cs

@@ -233,7 +233,7 @@ internal class UpdateViewModel : SubViewModel<ViewModelMain>
         catch (Exception ex)
         {
             UpdateState = UpdateState.UnableToCheck;
-            CrashHelper.SendExceptionInfoAsync(ex);
+            CrashHelper.SendExceptionInfo(ex);
             return;
         }