mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.resolvers: Report when hostname fails IDNA
Not a particularly user-friendly error message, but better than "unable to resolve service" and having no clue where it came from.
This commit is contained in:
parent
aa0b6f765a
commit
96b6f68b23
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ function methods:next(cb)
|
|||
end
|
||||
|
||||
if not self.hostname then
|
||||
-- FIXME report IDNA error
|
||||
self.last_error = "hostname failed IDNA";
|
||||
cb(nil);
|
||||
return;
|
||||
end
|
||||
|
|
|
@ -34,7 +34,7 @@ function methods:next(cb)
|
|||
end
|
||||
|
||||
if not self.hostname then
|
||||
-- FIXME report IDNA error
|
||||
self.last_error = "hostname failed IDNA";
|
||||
cb(nil);
|
||||
return;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue