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:
Kim Alvefur 2021-10-28 13:02:59 +02:00
parent 1a0be02fe8
commit ff2e0641b9

View file

@ -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