mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.dataforms: Improve default error message for failed datatype validation
This commit is contained in:
parent
a6d4c6c8f6
commit
715b488722
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ function form_t.data(layout, stanza, current)
|
|||
if valid then
|
||||
value = ret;
|
||||
else
|
||||
value, err = nil, ret or field.datatype;
|
||||
value, err = nil, ret or ("Invalid value for data of type " .. field.datatype);
|
||||
end
|
||||
end
|
||||
data[field.name], errors[field.name] = value, err;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue