Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-06-07 16:26:14 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-06-07 16:26:14 (GMT)
commitc2b34fe63dac71ef97fe8fde49816797d432b884 (patch)
tree6c03e8a9e2a03e61f2af596f18343e9853b82408
parent13016734ae5ae6f3faa0363ed4b8496da182d0d7 (diff)
server_plugin: Emit activity-properties-changed with correct arguments
-rw-r--r--src/server_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server_plugin.py b/src/server_plugin.py
index 84554bd..f966d0c 100644
--- a/src/server_plugin.py
+++ b/src/server_plugin.py
@@ -1065,7 +1065,7 @@ class ServerPlugin(gobject.GObject):
"""Handle update of properties for a "room" (activity handle)"""
for act_id, act_handle in self._activities.items():
if room == act_handle:
- self.emit("activity-properties-changed", act_id, properties)
+ self.emit("activity-properties-changed", act_id, room, properties)
return
def _server_is_trusted(self, hostname):