forked from I2P_Developers/i2p.i2p
poke the systray (so that on startup, it may show the icon and/or launch the browser)
This commit is contained in:
@ -4,6 +4,7 @@ import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import net.i2p.router.RouterContext;
|
||||
import net.i2p.apps.systray.SysTray;
|
||||
|
||||
import org.mortbay.jetty.Server;
|
||||
import org.mortbay.jetty.servlet.WebApplicationContext;
|
||||
@ -51,6 +52,11 @@ public class RouterConsoleRunner {
|
||||
} catch (MultiException me) {
|
||||
me.printStackTrace();
|
||||
}
|
||||
try {
|
||||
SysTray tray = SysTray.getInstance();
|
||||
} catch (Throwable t) {
|
||||
t.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
private void initialize(WebApplicationContext context) {
|
||||
|
Reference in New Issue
Block a user