mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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)
|
max = function (st, data)
|
||||||
st:text_tag("max", inttostr(data));
|
st:text_tag("max", inttostr(data));
|
||||||
end;
|
end;
|
||||||
|
index = function (st, data)
|
||||||
|
st:text_tag("index", inttostr(data));
|
||||||
|
end;
|
||||||
count = function (st, data)
|
count = function (st, data)
|
||||||
st:text_tag("count", inttostr(data));
|
st:text_tag("count", inttostr(data));
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue