div. kleine Fehlerbehebungen

This commit is contained in:
maier_S
2022-03-21 08:13:37 +01:00
parent 15c25af4b8
commit eb5c2fa502
5 changed files with 9 additions and 8 deletions

View File

@@ -36,7 +36,7 @@ namespace FSI.BT.Tools.Commands
break;
case "PL2.Als":
url = Global.Settings.Pl2PlsAls;
url = Global.Settings.Pl2Als;
break;
case "PL3.Pls":
@@ -56,6 +56,9 @@ namespace FSI.BT.Tools.Commands
break;
}
if (url == String.Empty)
return;
url = url.Replace("&", "^&");
Process.Start(new ProcessStartInfo(url) { UseShellExecute = true });
}