net.resolvers.service: Fix sorting SRV record

This commit is contained in:
Kim Alvefur 2018-09-30 12:51:34 +02:00
parent bb9b344fee
commit ca4804c413

View file

@ -47,7 +47,7 @@ function methods:next(cb)
return;
end
table.sort(answer, function (a, b) return a.priority > b.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