net.resolvers.basic: Indicate to callback if we have more targets available

This commit is contained in:
Matthew Wild 2022-03-18 16:13:09 +00:00
parent 3c5d7eaef1
commit 6050cd0da5

View file

@ -64,7 +64,7 @@ function methods:next(cb)
return;
end
local next_target = table.remove(self.targets, 1);
cb(next_target[1], next_target[2], next_target[3], next_target[4]);
cb(next_target[1], next_target[2], next_target[3], next_target[4], not not self.targets[1]);
return;
end