mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
net.resolvers: Fix traceback from hostname failing IDNA
Related to #1426
This commit is contained in:
parent
91156ab5d9
commit
2a8b031b75
2 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ function methods:next(cb)
|
||||||
if not self.hostname then
|
if not self.hostname then
|
||||||
-- FIXME report IDNA error
|
-- FIXME report IDNA error
|
||||||
cb(nil);
|
cb(nil);
|
||||||
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
local targets = {};
|
local targets = {};
|
||||||
|
|
|
@ -28,6 +28,7 @@ function methods:next(cb)
|
||||||
if not self.hostname then
|
if not self.hostname then
|
||||||
-- FIXME report IDNA error
|
-- FIXME report IDNA error
|
||||||
cb(nil);
|
cb(nil);
|
||||||
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
local targets = {};
|
local targets = {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue