mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.dataforms: Fix verfication for booleans
This commit is contained in:
parent
2dae99da75
commit
df36a97275
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ field_readers["boolean"] =
|
|||
field_verifiers["boolean"] =
|
||||
function (data, field_tag, required)
|
||||
data = field_readers["text-single"](field_tag);
|
||||
if #data == 0 and required then
|
||||
if ((not data) or (#data == 0)) and required then
|
||||
return "Required value missing";
|
||||
end
|
||||
if data ~= "1" and data ~= "true" and data ~= "0" and data ~= "false" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue