Full fix for #11

This commit is contained in:
Nicholas O'Leary
2013-09-07 14:27:41 +01:00
parent 07ff9aa061
commit 7b4927ff5d
3 changed files with 18 additions and 16 deletions

View File

@@ -66,8 +66,10 @@
if (err) {
if (err.status == 404) {
RED.notify("<strong>Error</strong>: debug node not deployed","error");
} else {
} else if (err.status == 0) {
RED.notify("<strong>Error</strong>: no response from server","error");
} else {
RED.notify("<strong>Error</strong>: unexpected error: ("+err.status+")"+err.response,"error");
}
} else if (resp.status == 200) {
RED.notify("Successfully activated: "+label,"success");
@@ -80,12 +82,7 @@
node.dirty = true;
RED.view.redraw();
} else {
if (resp) {
RED.notify("<strong>Error</strong>: unexpected response: "+resp,"error");
} else {
RED.notify("<strong>Error</strong>: no response from server","error");
}
console.log(err,resp);
RED.notify("<strong>Error</strong>: unexpected response: ("+resp.status+") "+resp.response,"error");
}
});
}