diff options
author | Kim Alvefur <zash@zash.se> | 2014-06-20 16:10:04 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-06-20 16:10:04 +0200 |
commit | 15b3071bebceb195dbf057093dcddf1109b7d4eb (patch) | |
tree | c8c0519023683be5b6abd56341507e7d4ffc601f /plugins | |
parent | 496c55391e317de94d5d62cba4088e5f93aae253 (diff) | |
download | prosody-15b3071bebceb195dbf057093dcddf1109b7d4eb.tar.gz prosody-15b3071bebceb195dbf057093dcddf1109b7d4eb.zip |
mod_presence: Fire a presence/initial event on initial presence
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_presence.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 2899bd7e..32a25b59 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -137,6 +137,9 @@ function handle_normal_presence(origin, stanza) origin.directed = nil; end else + if not origin.presence then + module:fire_event("presence/initial", { origin = origin, stanza = stanza } ); + end origin.presence = stanza; stanza:tag("delay", { xmlns = "urn:xmpp:delay", from = host, stamp = datetime.datetime() }):up(); if origin.priority ~= priority then |