diff --git a/apps/routerconsole/java/src/net/i2p/router/web/WebAppStarter.java b/apps/routerconsole/java/src/net/i2p/router/web/WebAppStarter.java index 0c4d7ac47..0384bff39 100644 --- a/apps/routerconsole/java/src/net/i2p/router/web/WebAppStarter.java +++ b/apps/routerconsole/java/src/net/i2p/router/web/WebAppStarter.java @@ -155,7 +155,7 @@ public class WebAppStarter { String path = '/'+ appName; for (int i = 0; i < handlers.length; i++) { ContextHandler ch = (ContextHandler) handlers[i]; - if (appName.equals(ch.getContextPath())) + if (path.equals(ch.getContextPath())) return ch; } return null;