summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-06 09:59:59 +0100
committerAndrew Dolgov <[email protected]>2006-12-06 09:59:59 +0100
commit3ac2f3c76716e93de91b9f17786fe235905b2c1d (patch)
treeac102bb0dd447240d3f50481bc9c6f529000e2dc /functions.js
parent5854573ad3f8137d123b7f0d196f1c0e38dcb1d4 (diff)
fix auto-refresh of active feed when update detected in scheduled refetch call
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.js b/functions.js
index 3fa3d5e53..c3158e34e 100644
--- a/functions.js
+++ b/functions.js
@@ -613,7 +613,7 @@ function parse_counters(reply, scheduled_call) {
}
}
-function parse_counters_reply(xmlhttp) {
+function parse_counters_reply(xmlhttp, scheduled_call) {
if (!xmlhttp.responseXML) {
notify("refetch_callback: backend did not return valid XML", true, true);
@@ -648,7 +648,7 @@ function parse_counters_reply(xmlhttp) {
var counters = reply.firstChild;
- parse_counters(counters, true);
+ parse_counters(counters, scheduled_call);
var runtime_info = counters.nextSibling;