Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <cassidy@cass-lpt.(none)>2007-09-11 15:44:53 (GMT)
committer Guillaume Desmottes <cassidy@cass-lpt.(none)>2007-09-11 15:44:53 (GMT)
commit1308b6fad475228047dacc3ed5dc4dbdabde21fe (patch)
treef2e1fd8b43e23df552e0e4d4b6680e54a0e3f1dd
parentb4e66c9fef41c913b870ec523dab5c868f4b4d88 (diff)
Be sure buddies keys are converted to string
-rw-r--r--NEWS1
-rw-r--r--src/presenceservice.py3
2 files changed, 3 insertions, 1 deletions
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):