mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers.service: Fix sorting SRV record
This commit is contained in:
parent
bb9b344fee
commit
ca4804c413
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue