Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/activity.py')
-rw-r--r--src/activity.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/activity.py b/src/activity.py
index 11629d6..b9a1973 100644
--- a/src/activity.py
+++ b/src/activity.py
@@ -430,7 +430,12 @@ class Activity(ExportedGObject):
This method is called by the PresenceService on the local machine.
"""
- if not self._joined:
+ if self._joined:
+ _logger.debug("Ignoring alleged join to activity %s that I'm in: "
+ "I can already see who's there", self._id)
+ else:
+ _logger.debug("%s says they joined activity %s that I'm not in",
+ buddy.props.objid, self._id)
self._add_buddies((buddy,))
def _add_buddies(self, buddies):