summaryrefslogtreecommitdiff
path: root/sleekxmpp
diff options
context:
space:
mode:
Diffstat (limited to 'sleekxmpp')
-rw-r--r--sleekxmpp/basexmpp.py2
-rw-r--r--sleekxmpp/roster/item.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py
index 59a79b78..8f11eefa 100644
--- a/sleekxmpp/basexmpp.py
+++ b/sleekxmpp/basexmpp.py
@@ -778,8 +778,6 @@ class BaseXMPP(XMLStream):
not presence['type'] in presence.showtypes:
return
- self.event("changed_status", presence)
-
def exception(self, exception):
"""
Process any uncaught exceptions, notably IqError and
diff --git a/sleekxmpp/roster/item.py b/sleekxmpp/roster/item.py
index 1520f770..c27f7a78 100644
--- a/sleekxmpp/roster/item.py
+++ b/sleekxmpp/roster/item.py
@@ -345,7 +345,10 @@ class RosterItem(object):
self.xmpp.event('got_online', presence)
if resource not in self.resources:
self.resources[resource] = {}
+ old_show = self.resources[resource].get('show', None)
self.resources[resource].update(data)
+ if old_show != presence['show']:
+ self.xmpp.event('changed_status', presence)
def handle_unavailable(self, presence):
resource = presence['from'].resource
@@ -353,6 +356,7 @@ class RosterItem(object):
return
if resource in self.resources:
del self.resources[resource]
+ self.xmpp.event('changed_status', presence)
if not self.resources:
self.xmpp.event('got_offline', presence)