summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 1717cfbe2..2b6f7f822 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -131,14 +131,14 @@ function backend_sanity_check_callback(transport) {
}
if (!transport.responseXML) {
- fatalError(3, "[D001, Received reply is not XML]: " + transport.responseText);
+ fatalError(3, "Sanity check: Received reply is not XML", transport.responseText);
return;
}
var reply = transport.responseXML.firstChild.firstChild;
if (!reply) {
- fatalError(3, "[D002, Invalid RPC reply]: " + transport.responseText);
+ fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
return;
}
@@ -170,7 +170,7 @@ function backend_sanity_check_callback(transport) {
init_second_stage();
} catch (e) {
- exception_error("backend_sanity_check_callback", e);
+ exception_error("backend_sanity_check_callback", e, transport);
}
}