Constructor0987 / MeisterGeister

Other
17 stars 5 forks source link

Links zu Städteeinträgen in Wiki Aventurica in DG Suche funktionieren nicht #61

Open garin1000 opened 2 years ago

garin1000 commented 2 years ago

Hi, offensichtlich wurde vor einiger Zeit Wiki Aventurica umgestellt, so dass die aufgerufenen URLs nicht länger funktionieren. Die folgende minimale Änderung behebt das Problem. Viele Grüße Garin

diff --git "a/DG-Suche/WikiLinkControl.xaml.cs" "b/DG-Suche/WikiLinkControl.xaml.cs"
index fe55d260..4bac7d6a 100644
--- "a/DG-Suche/WikiLinkControl.xaml.cs"
+++ "b/DG-Suche/WikiLinkControl.xaml.cs"
@@ -27,7 +27,7 @@ namespace DgSuche
         private void ImageWiki_MouseDown(object sender, MouseButtonEventArgs e)
         {
             if (Tag != null && Tag.ToString().Trim() != string.Empty)
-                System.Diagnostics.Process.Start("http://www.wiki-aventurica.de/index.php?title=" + Tag.ToString());
+                System.Diagnostics.Process.Start("https://de.wiki-aventurica.de/wiki/" + Tag.ToString());
             else
                 MessageBox.Show("Kein Eintrag ausgewählt.", "Wiki-Aventurica");
         }