added trailing '/' to router console url

This commit is contained in:
hypercubus
2004-08-22 00:09:56 +00:00
committed by zzz
parent 115da03a23
commit 294936d137

View File

@ -57,7 +57,7 @@ public class SysTray implements SysTrayMenuListener {
if (_browserString == null || _browserString.equals("default")) {
try {
if (_urlLauncher.openUrl("http://localhost:7657"))
if (_urlLauncher.openUrl("http://localhost:7657/"))
return;
} catch (Exception ex) {
@ -66,7 +66,7 @@ public class SysTray implements SysTrayMenuListener {
} else {
try {
if (_urlLauncher.openUrl("http://localhost:7657", _browserString))
if (_urlLauncher.openUrl("http://localhost:7657/", _browserString))
return;
} catch (Exception ex) {