Skip to content

Commit

Permalink
Add general catch to update checker; it crashes but the cause is uncl…
Browse files Browse the repository at this point in the history
…ear rn
  • Loading branch information
Equbuxu committed Dec 2, 2023
1 parent af484ab commit 39b55cc
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,11 @@ private async void ConditionalUPDATE()
{
NoticeDialog.Show("COULD_NOT_CHECK_FOR_UPDATES", "UPDATE_CHECK_FAILED");
}
catch (Exception e)
{
CrashHelper.SendExceptionInfoToWebhook(e);
NoticeDialog.Show("COULD_NOT_CHECK_FOR_UPDATES", "UPDATE_CHECK_FAILED");
}

AskToInstall();
}
Expand Down

0 comments on commit 39b55cc

Please sign in to comment.