From 91d612b39e1dcc3b25d707019a071506d08f9dd5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 20 Feb 2006 05:29:52 +0100 Subject: print additional info on fatalError(3) --- tt-rss.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tt-rss.js') 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; } -- cgit v1.2.3-54-g00ecf