MUC: Include original stanza in send history event

This commit is contained in:
Kim Alvefur 2017-04-01 16:03:37 +02:00
parent 33e17c6554
commit e8b2d9e21f

View file

@ -120,6 +120,7 @@ local function send_history(room, stanza)
local maxchars, maxstanzas, since = parse_history(stanza);
local event = {
room = room;
stanza = stanza;
to = stanza.attr.from; -- `to` is required to calculate the character count for `maxchars`
maxchars = maxchars, maxstanzas = maxstanzas, since = since;
next_stanza = function() end; -- events should define this iterator