Fix fetch status catch

This commit is contained in:
Jeremy Zhang 2017-04-13 19:06:21 +00:00
parent a7469f2940
commit a0dcde31f8

View File

@ -383,7 +383,7 @@
} }
}); });
fet.catch(function(data) { fet.catch(function(data) {
if (500 <= data.status < 600) { if (500 <= data.status && data.status < 600) {
Materialize.toast('Fetching messages error! Webserver down?', 10000); Materialize.toast('Fetching messages error! Webserver down?', 10000);
fetchtimeout = setTimeout(run_fetch_routine, 10000); fetchtimeout = setTimeout(run_fetch_routine, 10000);
} }