summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-20 05:29:52 +0100
committerAndrew Dolgov <[email protected]>2006-02-20 05:29:52 +0100
commit91d612b39e1dcc3b25d707019a071506d08f9dd5 (patch)
treebdfa76de8eea585a1c0d3f93f78741e34f17f9d3 /tt-rss.js
parent2f3c902cdc9683457732ca831b0d9b359eb6e939 (diff)
print additional info on fatalError(3)
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 4deac4456..758db7715 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -143,14 +143,14 @@ function backend_sanity_check_callback() {
try {
if (!xmlhttp.responseXML) {
- fatalError(3);
+ fatalError(3, "D001;" + xmlhttp.responseText);
return;
}
var reply = xmlhttp.responseXML.firstChild;
if (!reply) {
- fatalError(3);
+ fatalError(3, "D002;" + xmlhttp.responseText);
return;
}