enhance: do not create crash log for unobserved task exceptions (#1121)

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-03-25 10:33:39 +08:00
parent 467089aec5
commit f37ac904b9
No known key found for this signature in database

View file

@ -37,7 +37,6 @@ namespace SourceGit
TaskScheduler.UnobservedTaskException += (_, e) => TaskScheduler.UnobservedTaskException += (_, e) =>
{ {
LogException(e.Exception);
e.SetObserved(); e.SetObserved();
}; };