net.resolvers.service: Sort SRV records in correct direction

This commit is contained in:
Kim Alvefur 2018-09-30 13:02:46 +02:00
parent ca4804c413
commit e8e4292dc4

View file

@ -47,7 +47,7 @@ function methods:next(cb)
return;
end
table.sort(answer, function (a, b) return a.srv.priority > b.srv.priority end);
table.sort(answer, function (a, b) return a.srv.priority < b.srv.priority end);
for _, record in ipairs(answer) do
table.insert(targets, { record.srv.target, record.srv.port, self.conn_type, self.extra });
end