handle empty servers better

pull/481/head
Ryan Tharp 6 years ago
parent bf7742932b
commit 220f0aa9f5

@ -457,6 +457,12 @@ class LokiPublicChannelAPI {
{ params }
);
// if any problems, abort out
if (res.err || !res.response) {
if (res.err) log.error('Error '+res.err);
break;
}
// Process results
res.response.data.reverse().forEach(deleteEntry => {
// Escalate it up to the subsystem that can check to see if this has

Loading…
Cancel
Save