diff options
author | Kim Alvefur <zash@zash.se> | 2014-06-21 15:05:52 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-06-21 15:05:52 +0200 |
commit | 2d5b25a9375156bba8b3ffa97a95b9cb2fe35a9d (patch) | |
tree | b2f59bdc9faeaf18b51e6b13f3b78a625c8a7510 /plugins/mod_presence.lua | |
parent | 3a09673e61b5d394fcade54e8e09dadcc840fdb0 (diff) | |
parent | 265b49cc49438767327fc3468561a4fbcf484fe0 (diff) | |
download | prosody-2d5b25a9375156bba8b3ffa97a95b9cb2fe35a9d.tar.gz prosody-2d5b25a9375156bba8b3ffa97a95b9cb2fe35a9d.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_presence.lua')
-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 |