mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dataforms: Encode size attributes as integers in XEP-0221 media element
Otherwise very large fields would be serialized in e notation
This commit is contained in:
parent
1a0be02fe8
commit
ff2e0641b9
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ function form_t.form(layout, data, formtype)
|
|||
|
||||
local media = field.media;
|
||||
if media then
|
||||
form:tag("media", { xmlns = "urn:xmpp:media-element", height = ("%g"):format(media.height), width = ("%g"):format(media.width) });
|
||||
form:tag("media", { xmlns = "urn:xmpp:media-element", height = ("%d"):format(media.height), width = ("%d"):format(media.width) });
|
||||
for _, val in ipairs(media) do
|
||||
form:tag("uri", { type = val.type }):text(val.uri):up()
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue