summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-07-01 04:20:55 +0100
committerAndrew Dolgov <[email protected]>2007-07-01 04:20:55 +0100
commitaf6f8bf241674e177a6ecc0eac77bb267aca3b94 (patch)
tree5b74c6018453ea67dc2fd8b34b2cf3920d6a1576 /viewfeed.js
parent933959978aa7c9954982ed87e1570f2dc9793847 (diff)
tweak catchup_callback
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 973c436e5..1d6a4a62b 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -22,11 +22,11 @@ function catchup_callback() {
if (xmlhttp_rpc.readyState == 4) {
try {
debug("catchup_callback");
- if (_catchup_callback_func) {
- setTimeout(_catchup_callback_func, 100);
- }
notify("");
all_counters_callback();
+ if (_catchup_callback_func) {
+ setTimeout(_catchup_callback_func, 10);
+ }
} catch (e) {
exception_error("catchup_callback", e);
}