Better handle disable notifitcations

This commit is contained in:
Philipp Hörist 2019-02-02 12:55:07 +01:00
parent 59b39b049a
commit 3f03e6e0a4
2 changed files with 8 additions and 8 deletions

View File

@ -45,17 +45,17 @@ class UserActivity(BaseModule):
@event_node(nbxmpp.NS_ACTIVITY)
def _activity_received(self, _con, _stanza, properties):
data = properties.pubsub_event.data
if data is None:
return
empty = properties.pubsub_event.empty
for contact in app.contacts.get_contacts(self._account,
str(properties.jid)):
if data.activity is not None:
if not empty:
contact.pep[PEPEventType.ACTIVITY] = data
else:
contact.pep.pop(PEPEventType.ACTIVITY, None)
if properties.is_self_message:
if data.activity is not None:
if not empty:
self._con.pep[PEPEventType.ACTIVITY] = data
else:
self._con.pep.pop(PEPEventType.ACTIVITY, None)

View File

@ -45,17 +45,17 @@ class UserMood(BaseModule):
@event_node(nbxmpp.NS_MOOD)
def _mood_received(self, _con, _stanza, properties):
data = properties.pubsub_event.data
if data is None:
return
empty = properties.pubsub_event.empty
for contact in app.contacts.get_contacts(self._account,
str(properties.jid)):
if data.mood is not None:
if not empty:
contact.pep[PEPEventType.MOOD] = data
else:
contact.pep.pop(PEPEventType.MOOD, None)
if properties.is_self_message:
if data.mood is not None:
if not empty:
self._con.pep[PEPEventType.MOOD] = data
else:
self._con.pep.pop(PEPEventType.MOOD, None)