init readability tweaks

This commit is contained in:
Andrew Dolgov 2010-11-04 21:08:38 +03:00
parent 9fdeb07e6c
commit 5191a7ce03
1 changed files with 2 additions and 2 deletions

View File

@ -2146,7 +2146,7 @@ function backend_sanity_check_callback(transport) {
return init_offline();
}
var reply = transport.responseXML.firstChild.firstChild;
var reply = transport.responseXML.getElementsByTagName("error")[0];
if (!reply) {
fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
@ -2161,7 +2161,7 @@ function backend_sanity_check_callback(transport) {
console.log("sanity check ok");
var params = reply.nextSibling;
var params = transport.responseXML.getElementsByTagName("init-params")[0];
if (params) {
console.log('reading init-params...');