summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-23 09:59:00 +0100
committerAndrew Dolgov <[email protected]>2006-05-23 09:59:00 +0100
commitf54f515f440f69de6479fef14cd2aae004aff551 (patch)
treef1a4ff1ea4952dfc72c85dcd7cb5ff7832f7427d /tt-rss.js
parenta756529344fa6bfab8deded10c9750ce1bfd56ac (diff)
report runtime info in counter callbacks
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 55c813b7f..7157d3292 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -70,8 +70,10 @@ function refetch_callback() {
if (error_code && error_code != 0) {
return fatalError(error_code, reply.getAttribute("error-msg"));
}
+
+ var counters = reply.firstChild;
- parse_counters(reply, true);
+ parse_counters(counters, true);
debug("refetch_callback: done");