forked from I2P_Developers/i2p.i2p
* Console:
- Fix NPE after restart (ticket #763) - Move more nonces out of system properties
This commit is contained in:
@ -809,7 +809,13 @@ public class SummaryHelper extends HelperBase {
|
||||
|
||||
private String _requestURI;
|
||||
public void setRequestURI(String s) { _requestURI = s; }
|
||||
public String getRequestURI() { return _requestURI; }
|
||||
|
||||
/**
|
||||
* @return non-null; "/home" if (strangely) not set by jsp
|
||||
*/
|
||||
public String getRequestURI() {
|
||||
return _requestURI != null ? _requestURI : "/home";
|
||||
}
|
||||
|
||||
public String getConfigTable() {
|
||||
String[] allSections = SummaryBarRenderer.ALL_SECTIONS;
|
||||
|
Reference in New Issue
Block a user