summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-31 23:03:40 +0300
committerAndrew Dolgov <[email protected]>2009-01-31 23:03:40 +0300
commit2184738a443e3fa62ea197f9b33b174eff8cf41d (patch)
tree96585dfcda76022818a459bdc3e98468e3f5a1d6 /functions.js
parent0002bc9f27364ff04747dcc90a1e808dfbd76110 (diff)
check for backend-returned fatal errors in major callbacks
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js37
1 files changed, 20 insertions, 17 deletions
diff --git a/functions.js b/functions.js
index e9cbed91b..6827420c6 100644
--- a/functions.js
+++ b/functions.js
@@ -604,24 +604,8 @@ function parse_counters_reply(transport, scheduled_call) {
updateTitle("");
return;
}
-
- var error_code = false;
- var error_msg = false;
-
- if (reply.firstChild) {
- error_code = reply.firstChild.getAttribute("error-code");
- error_msg = reply.firstChild.getAttribute("error-msg");
- }
- if (!error_code) {
- error_code = reply.getAttribute("error-code");
- error_msg = reply.getAttribute("error-msg");
- }
-
- if (error_code && error_code != 0) {
- debug("refetch_callback: got error code " + error_code);
- return fatalError(error_code, error_msg);
- }
+ if (!transport_error_check(transport)) return;
var counters = reply.getElementsByTagName("counters")[0];
@@ -2104,4 +2088,23 @@ function browseFeeds(limit) {
}
}
+function transport_error_check(transport) {
+ try {
+ if (transport.responseXML) {
+ var error = transport.responseXML.getElementsByTagName("error")[0];
+
+ if (error) {
+ var code = error.getAttribute("error-code");
+ var msg = error.getAttribute("error-msg");
+ if (code != 0) {
+ fatalError(code, msg);
+ return false;
+ }
+ }
+ }
+ } catch (e) {
+ exception_error("check_for_error_xml", e);
+ }
+ return true;
+}