mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.portmanager: Fix traceback on attempt to get non-existent service
If there's no such interface:port then `data` is nil and `data.service` errors.
This commit is contained in:
parent
36512eca29
commit
c460117e3c
1 changed files with 3 additions and 1 deletions
|
@ -216,7 +216,9 @@ function close(interface, port)
|
|||
end
|
||||
|
||||
function get_service_at(interface, port)
|
||||
local data = active_services:search(nil, interface, port)[1][1];
|
||||
local data = active_services:search(nil, interface, port);
|
||||
if not data or not data[1] or not data[1][1] then return nil, "not-found"; end
|
||||
data = data[1][1];
|
||||
return data.service, data.server;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue