CrashReporter.NET icon indicating copy to clipboard operation
CrashReporter.NET copied to clipboard

_reportCrash.RetryFailedReports() blocking the WPF app

Open simpleCitizen3038 opened this issue 2 years ago • 1 comments

Hi @ravibpatel I am using the CrashReporter lib for my WPF project and I face a issue regarding RetryFailedReports(); When i got a crash from app and restarted the app again it is showing the report send popup , and it send the report as well but after that my app is not going further even after sending the report successfully

base.OnStartup(e); AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException; Application.Current.DispatcherUnhandledException += DispatcherOnUnhandledException; TaskScheduler.UnobservedTaskException += TaskSchedulerOnUnobservedTaskException; _reportCrash = new ReportCrash("[email protected]") { Silent = true }; _reportCrash.RetryFailedReports();

CC @ducseb @EddieDemon @milleniumbug @tarekwiz

simpleCitizen3038 avatar Jan 04 '23 06:01 simpleCitizen3038

Have you checked/debugged where the lock happens?

EddieDemon avatar Jan 20 '23 14:01 EddieDemon