1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

remove old-style big feed browser (2)

This commit is contained in:
Andrew Dolgov
2009-01-24 06:23:02 +01:00
parent 3a6521f041
commit 64b3069d27
3 changed files with 3 additions and 9 deletions
+3 -2
View File
@@ -1284,14 +1284,15 @@ function backend_sanity_check_callback() {
}
if (!xmlhttp.responseXML) {
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
fatalError(3, "Sanity Check: Received reply is not XML",
xmlhttp.responseText);
return;
}
var reply = xmlhttp.responseXML.firstChild.firstChild;
if (!reply) {
fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
fatalError(3, "Sanity Check: Invalid RPC reply", xmlhttp.responseText);
return;
}