From d0385e9b6108dc596712212b840a0f1dce1f5054 Mon Sep 17 00:00:00 2001 From: jvyden Date: Sat, 4 May 2024 21:17:01 -0400 Subject: [PATCH] Adjust unhandled exception text --- Refresher/Program.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Refresher/Program.cs b/Refresher/Program.cs index ff31558..18ae20f 100644 --- a/Refresher/Program.cs +++ b/Refresher/Program.cs @@ -70,10 +70,10 @@ public static void Main(string[] args) SentrySdk.CaptureException((Exception)eventArgs.ExceptionObject); SentrySdk.Flush(); MessageBox.Show($""" - There was an unhandled error in Refresher! - *Please* screenshot this message box and send it to us over GitHub or Discord with details on what you were doing. This is likely a bug in Refresher. + There was an unhandled error in Refresher. + This has been automatically reported to us. The exception details has been displayed for further debugging: - Exception details: {eventArgs.ExceptionObject} + {eventArgs.ExceptionObject} """, "Critical Error"); @@ -88,10 +88,10 @@ There was an unhandled error in Refresher! SentrySdk.CaptureException(ex); SentrySdk.Flush(); MessageBox.Show($""" - There was an unhandled error in Refresher! - *Please* screenshot this message box and send it to us over GitHub or Discord with details on what you were doing. This is likely a bug in Refresher. + There was an unhandled error in Refresher. + This has been automatically reported to us. The exception details has been displayed for further debugging: - Exception details: {ex} + {ex} """, "Critical Error"); } App.Dispose();