From 1308b6fad475228047dacc3ed5dc4dbdabde21fe Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 11 Sep 2007 15:44:53 +0000 Subject: Be sure buddies keys are converted to string --- diff --git a/NEWS b/NEWS index 5b33b1b..3c49e37 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,4 @@ +* #2299: Be sure buddies keys are converted to string * #3291: Further improve activity participant tracking (smcv) * Correctly pick up existing Salut connections (smcv) * Don't crash if a buddy property is None (smcv) diff --git a/src/presenceservice.py b/src/presenceservice.py index 7ce94ba..8452410 100644 --- a/src/presenceservice.py +++ b/src/presenceservice.py @@ -186,7 +186,8 @@ class PresenceService(ExportedGObject): if buddy is not None and buddy is not self._owner: buddy.update_buddy_properties(tp, properties) m = conn[CONN_INTERFACE_BUDDY_INFO].connect_to_signal( - 'PropertiesChanged', buddy_properties_changed) + 'PropertiesChanged', buddy_properties_changed, + byte_arrays=True) self._conn_matches[conn].append(m) def buddy_curact_changed(contact, act_id, room): -- cgit v0.9.1