I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 6c87005e authored by zzz's avatar zzz
Browse files

* graphs.jsp: Reduce refresh time to eliminate double iframe load

parent 8d2a5160
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,8 @@ public class GraphHelper extends HelperBase {
+ "\" title=\"" + title + "\" /></a>\n");
}
if (_refreshDelaySeconds > 0)
_out.write("<meta http-equiv=\"refresh\" content=\"" + _refreshDelaySeconds + "\" />\n");
// shorten the refresh by 3 seconds so we beat the iframe
_out.write("<meta http-equiv=\"refresh\" content=\"" + (_refreshDelaySeconds - 3) + "\" />\n");
} catch (IOException ioe) {
ioe.printStackTrace();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment