mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.dataforms: Don't return invalid JIDs in jid-single.
This commit is contained in:
parent
9cf153e1bc
commit
644b8615f3
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ field_readers["jid-single"] =
|
|||
if data and #data > 0 then
|
||||
return data
|
||||
elseif raw_data then
|
||||
return raw_data, "Invalid JID";
|
||||
return nil, "Invalid JID: " .. raw_data;
|
||||
elseif required then
|
||||
return nil, "Required value missing";
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue