From f54f515f440f69de6479fef14cd2aae004aff551 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 23 May 2006 09:59:00 +0100 Subject: report runtime info in counter callbacks --- functions.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'functions.js') diff --git a/functions.js b/functions.js index 355793640..e58a97036 100644 --- a/functions.js +++ b/functions.js @@ -470,6 +470,11 @@ function parse_counters(reply, scheduled_call) { var f_document = getFeedsContext().document; var title_obj = getMainContext(); + if (reply.firstChild && reply.firstChild.firstChild) { + debug("wrong element passed to parse_counters, adjusting."); + reply = reply.firstChild; + } + debug("F_DOC: " + f_document + ", T_OBJ: " + title_obj); for (var l = 0; l < reply.childNodes.length; l++) { @@ -565,7 +570,9 @@ function all_counters_callback() { var reply = xmlhttp_rpc.responseXML.firstChild; - parse_counters(reply); + var counters = reply.firstChild; + + parse_counters(counters); } catch (e) { exception_error("all_counters_callback", e); -- cgit v1.2.3