diff --git a/Bloxstrap/Resources/Strings.Designer.cs b/Bloxstrap/Resources/Strings.Designer.cs
index bce2f21..af9ccfd 100644
--- a/Bloxstrap/Resources/Strings.Designer.cs
+++ b/Bloxstrap/Resources/Strings.Designer.cs
@@ -712,7 +712,9 @@ namespace Bloxstrap.Resources {
}
///
- /// Looks up a localized string similar to Please report this exception through a GitHub issue or in our Discord chat, along with a copy of the log file that was created..
+ /// Looks up a localized string similar to Check the [Bloxstrap Wiki]({0}) first to see if this problem has already been addressed with a fix.
+ ///
+ ///If not, then please report this exception through a [GitHub issue]({1}) along with a copy of the log file that was created..
///
public static string Dialog_Exception_Info_2 {
get {
@@ -720,33 +722,6 @@ namespace Bloxstrap.Resources {
}
}
- ///
- /// Looks up a localized string similar to Submit report....
- ///
- public static string Dialog_Exception_SubmitReport {
- get {
- return ResourceManager.GetString("Dialog.Exception.SubmitReport", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Submit report via Discord.
- ///
- public static string Dialog_Exception_SubmitReportDiscord {
- get {
- return ResourceManager.GetString("Dialog.Exception.SubmitReportDiscord", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Submit report via GitHub.
- ///
- public static string Dialog_Exception_SubmitReportGithub {
- get {
- return ResourceManager.GetString("Dialog.Exception.SubmitReportGithub", resourceCulture);
- }
- }
-
///
/// Looks up a localized string similar to Bloxstrap Exception.
///
diff --git a/Bloxstrap/Resources/Strings.resx b/Bloxstrap/Resources/Strings.resx
index 6627e96..b5eadc2 100644
--- a/Bloxstrap/Resources/Strings.resx
+++ b/Bloxstrap/Resources/Strings.resx
@@ -319,16 +319,9 @@ Click for more information
An exception occurred while running Bloxstrap
- Please report this exception through a GitHub issue or in our Discord chat, along with a copy of the log file that was created.
-
-
- Submit report...
-
-
- Submit report via Discord
-
-
- Submit report via GitHub
+ Check the [Bloxstrap Wiki]({0}) first to see if this problem has already been addressed with a fix.
+
+If not, then please report this exception through a [GitHub issue]({1}) along with a copy of the log file that was created.Bloxstrap Exception
diff --git a/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml b/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml
index 4f6dec1..92be622 100644
--- a/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml
+++ b/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml
@@ -1,9 +1,12 @@
-
-
+
-
-
-
-
-
-
+
diff --git a/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml.cs b/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml.cs
index 3d8c372..0c7dd86 100644
--- a/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml.cs
+++ b/Bloxstrap/UI/Elements/Dialogs/ExceptionDialog.xaml.cs
@@ -18,10 +18,7 @@ namespace Bloxstrap.UI.Elements.Dialogs
{
public ExceptionDialog(Exception exception)
{
- Exception? innerException = exception.InnerException;
-
InitializeComponent();
-
AddException(exception);
if (!App.Logger.Initialized)
@@ -35,21 +32,6 @@ namespace Bloxstrap.UI.Elements.Dialogs
Clipboard.SetDataObject(String.Join("\r\n", App.Logger.Backlog));
};
- ReportOptions.DropDownClosed += (sender, e) =>
- {
- if (ReportOptions.SelectedItem is not ComboBoxItem comboBoxItem)
- return;
-
- ReportOptions.SelectedIndex = 0;
-
- string? tag = comboBoxItem.Tag?.ToString();
-
- if (tag == "github")
- Utilities.ShellExecute($"https://github.com/{App.ProjectRepository}/issues");
- else if (tag == "discord")
- Utilities.ShellExecute("https://discord.gg/nKjV3mGq6R");
- };
-
CloseButton.Click += delegate
{
Close();