diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-27 21:23:31 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-27 21:23:31 +0100 |
commit | 68c511e310d3f44914542a73980c7e9b55adabec (patch) | |
tree | 01e062ac9410d0926425359ddd7c8050bacd214a /plugins | |
parent | b6b61e70b151f71c3c0a3e30d67efb9a1110eab1 (diff) | |
parent | fe3b15b27a23938728fec845a096a8b578913c14 (diff) | |
download | prosody-68c511e310d3f44914542a73980c7e9b55adabec.tar.gz prosody-68c511e310d3f44914542a73980c7e9b55adabec.zip |
Merge 0.11->trunk
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_csi.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_csi.lua b/plugins/mod_csi.lua index 7f50dfd9..84476cac 100644 --- a/plugins/mod_csi.lua +++ b/plugins/mod_csi.lua @@ -11,7 +11,7 @@ end); function refire_event(name) return function (event) if event.origin.username then - session.state = event.stanza.name; + event.origin.state = event.stanza.name; module:fire_event(name, event); return true; end |