forked from I2P_Developers/i2p.i2p
fix wrong prefix for startOnLoad in plugin webapps.config
This commit is contained in:
@ -126,7 +126,7 @@ public class PluginStarter implements Runnable {
|
|||||||
log.error("Skipping duplicate webapp " + warName + " in plugin " + appName);
|
log.error("Skipping duplicate webapp " + warName + " in plugin " + appName);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
String enabled = props.getProperty(PREFIX + warName + ENABLED);
|
String enabled = props.getProperty(RouterConsoleRunner.PREFIX + warName + ENABLED);
|
||||||
if (! "false".equals(enabled)) {
|
if (! "false".equals(enabled)) {
|
||||||
//log.error("Starting webapp: " + warName);
|
//log.error("Starting webapp: " + warName);
|
||||||
String path = new File(webappDir, fileNames[i]).getCanonicalPath();
|
String path = new File(webappDir, fileNames[i]).getCanonicalPath();
|
||||||
|
Reference in New Issue
Block a user