forked from I2P_Developers/i2p.i2p
fix getWebApp()
This commit is contained in:
@ -155,7 +155,7 @@ public class WebAppStarter {
|
|||||||
String path = '/'+ appName;
|
String path = '/'+ appName;
|
||||||
for (int i = 0; i < handlers.length; i++) {
|
for (int i = 0; i < handlers.length; i++) {
|
||||||
ContextHandler ch = (ContextHandler) handlers[i];
|
ContextHandler ch = (ContextHandler) handlers[i];
|
||||||
if (appName.equals(ch.getContextPath()))
|
if (path.equals(ch.getContextPath()))
|
||||||
return ch;
|
return ch;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
Reference in New Issue
Block a user