mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Bypass importance event in active mode (fixes #1249)
This commit is contained in:
parent
0db6c3f669
commit
1796f20abc
1 changed files with 3 additions and 1 deletions
|
@ -71,6 +71,7 @@ end, -1);
|
|||
|
||||
module:hook("csi-client-inactive", function (event)
|
||||
local session = event.origin;
|
||||
session.state = "inactive";
|
||||
if session.pump then
|
||||
session.pump:pause();
|
||||
else
|
||||
|
@ -81,7 +82,7 @@ module:hook("csi-client-inactive", function (event)
|
|||
pump:pause();
|
||||
session.pump = pump;
|
||||
function session.send(stanza)
|
||||
if module:fire_event("csi-is-stanza-important", { stanza = stanza, session = session }) then
|
||||
if session.state == "active" or module:fire_event("csi-is-stanza-important", { stanza = stanza, session = session }) then
|
||||
pump:flush();
|
||||
send(stanza);
|
||||
else
|
||||
|
@ -98,6 +99,7 @@ end);
|
|||
|
||||
module:hook("csi-client-active", function (event)
|
||||
local session = event.origin;
|
||||
session.state = "active";
|
||||
if session.pump then
|
||||
session.pump:resume();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue