mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dataforms: Fix validation of booleans.
This commit is contained in:
parent
b5ab3d394d
commit
9cf153e1bc
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ field_readers["boolean"] =
|
|||
if value ~= nil then
|
||||
return value;
|
||||
elseif raw_value then
|
||||
return "Invalid boolean representation";
|
||||
return nil, "Invalid boolean representation";
|
||||
elseif required then
|
||||
return nil, "Required value missing";
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue