From 294936d137cf35a51ab7b884954b2bf72397d22f Mon Sep 17 00:00:00 2001 From: hypercubus Date: Sun, 22 Aug 2004 00:09:56 +0000 Subject: [PATCH] added trailing '/' to router console url --- apps/systray/java/src/net/i2p/apps/systray/SysTray.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/systray/java/src/net/i2p/apps/systray/SysTray.java b/apps/systray/java/src/net/i2p/apps/systray/SysTray.java index 0bb86d6bf..635070b84 100644 --- a/apps/systray/java/src/net/i2p/apps/systray/SysTray.java +++ b/apps/systray/java/src/net/i2p/apps/systray/SysTray.java @@ -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) {