mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.rsm: Correctly coerce integer value for <index> (fix #1642)
This commit is contained in:
parent
55fb091536
commit
6bae44fea8
1 changed files with 3 additions and 0 deletions
|
@ -65,6 +65,9 @@ local element_generators = setmetatable({
|
|||
max = function (st, data)
|
||||
st:text_tag("max", inttostr(data));
|
||||
end;
|
||||
index = function (st, data)
|
||||
st:text_tag("index", inttostr(data));
|
||||
end;
|
||||
count = function (st, data)
|
||||
st:text_tag("count", inttostr(data));
|
||||
end;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue