Skip to content

Commit

Permalink
(Quick fix) Hard code runtime as not terminating.
Browse files Browse the repository at this point in the history
  • Loading branch information
bugsnagbot committed May 5, 2020
1 parent a9a0c09 commit 2d599cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bugsnag/UnhandledException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void CurrentDomain_ProcessExit(object sender, EventArgs e)

private void TaskScheduler_UnobservedTaskException(object sender, UnobservedTaskExceptionEventArgs e)
{
HandleEvent(e.Exception as Exception, !e.Observed);
HandleEvent(e.Exception as Exception, false);
}

[HandleProcessCorruptedStateExceptions]
Expand Down

0 comments on commit 2d599cb

Please sign in to comment.