Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/presenceservice.py
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 /src/presenceservice.py
parentb4e66c9fef41c913b870ec523dab5c868f4b4d88 (diff)
Be sure buddies keys are converted to string
Diffstat (limited to 'src/presenceservice.py')
-rw-r--r--src/presenceservice.py3
1 files changed, 2 insertions, 1 deletions
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):