From f3c60ac5e565680f63a12dd92042613be6c014d4 Mon Sep 17 00:00:00 2001 From: ZZYZX Date: Tue, 24 Dec 2019 20:13:18 +0200 Subject: [PATCH] Corrected Git Issues link for error dialog --- Source/Core/Windows/ExceptionDialog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Windows/ExceptionDialog.cs b/Source/Core/Windows/ExceptionDialog.cs index b984de79..4912bebe 100755 --- a/Source/Core/Windows/ExceptionDialog.cs +++ b/Source/Core/Windows/ExceptionDialog.cs @@ -206,7 +206,7 @@ namespace CodeImp.DoomBuilder.Windows private void newissue_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - try { System.Diagnostics.Process.Start("https://github.com/jewalky/GZDoom-Builder-Bugfix/issues"); } + try { System.Diagnostics.Process.Start("https://github.com/jewalky/UltimateDoomBuilder/issues"); } catch { MessageBox.Show("Unable to open URL..."); } newissue.LinkVisited = true; }