mod_csi_simple: Use the same event name when firing as when hooking (fixes #1245)

This commit is contained in:
Kim Alvefur 2018-11-25 14:47:36 +01:00
parent 38498588b4
commit ad38cc8fbe

View file

@ -81,7 +81,7 @@ module:hook("csi-client-inactive", function (event)
pump:pause();
session.pump = pump;
function session.send(stanza)
if module:fire_event("csi-stanza-is-important", { stanza = stanza, session = session }) then
if module:fire_event("csi-is-stanza-important", { stanza = stanza, session = session }) then
pump:flush();
send(stanza);
else