# HG changeset patch # User souliane # Date 1426870068 -3600 # Node ID 8aa32bcc3a9c8cf628416229c100a84a1f32516b # Parent da2ea16fabc65e183ac8544afeba49d06d98401d plugin XEP-0085, quick_frontend: fixes chat states diff -r da2ea16fabc6 -r 8aa32bcc3a9c frontends/src/quick_frontend/quick_app.py --- a/frontends/src/quick_frontend/quick_app.py Fri Mar 20 16:29:03 2015 +0100 +++ b/frontends/src/quick_frontend/quick_app.py Fri Mar 20 17:47:48 2015 +0100 @@ -586,7 +586,7 @@ continue to_display = C.USER_CHAT_STATES[state] if (state and widget.type == C.CHAT_GROUP) else state if widget.type == C.CHAT_GROUP and from_jid_s == C.ENTITY_ALL: - for occupant in [jid.newResource(self.target, nick) for nick in widget.occupants]: + for occupant in [jid.newResource(widget.target, nick) for nick in widget.occupants]: widget.updateEntityState(occupant, 'chat_state', to_display) elif from_jid.bare == widget.target.bare: # roster contact or MUC occupant widget.updateEntityState(from_jid, 'chat_state', to_display) diff -r da2ea16fabc6 -r 8aa32bcc3a9c src/plugins/plugin_xep_0085.py --- a/src/plugins/plugin_xep_0085.py Fri Mar 20 16:29:03 2015 +0100 +++ b/src/plugins/plugin_xep_0085.py Fri Mar 20 17:47:48 2015 +0100 @@ -140,7 +140,7 @@ self.host.memory.updateEntityData(entity_jid, ENTITY_KEY, value, profile_key=profile) if not value or value == DELETE_VALUE: # reinit chat state UI for this or these contact(s) - self.host.bridge.chatStateReceived(entity_jid.full(), "", profile) + self.host.bridge.chatStateReceived(unicode(entity_jid), "", profile) def paramUpdateTrigger(self, name, value, category, type_, profile): """Reset all the existing chat state entity data associated with this profile after a parameter modification. @@ -151,7 +151,7 @@ @param type_: parameter type """ if (category, name) == (PARAM_KEY, PARAM_NAME): - self.updateCache(C.ENTITY_ALL, True if bool("true") else DELETE_VALUE, profile=profile) + self.updateCache(C.ENTITY_ALL, True if C.bool(value) else DELETE_VALUE, profile=profile) return False return True