Software /
code /
prosody-modules
Changeset
4311:a6c253bc63a5
End value is index+1 as per the newest revision https://xmpp.org/extensions/xep-0372.html#revision-history-v0.4.0
author | Seve Ferrer <seve@delape.net> |
---|---|
date | Tue, 22 Dec 2020 11:18:46 +0100 |
parents | 4310:b0ad1604f77e |
children | 4312:33a41503b9e3 |
files | mod_muc_inject_mentions/mod_muc_inject_mentions.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_muc_inject_mentions/mod_muc_inject_mentions.lua Mon Dec 21 19:29:04 2020 +0100 +++ b/mod_muc_inject_mentions/mod_muc_inject_mentions.lua Tue Dec 22 11:18:46 2020 +0100 @@ -251,7 +251,7 @@ "reference", { xmlns=reference_xmlns, begin=tostring(mention.first - 1), -- count starts at 0 - ["end"]=tostring(mention.last - 1), + ["end"]=tostring(mention.last), type="mention", uri="xmpp:" .. mention.bare_jid, }