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-09-04 10:15:42 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-09-04 10:15:42 (GMT)
commita79f7b648877c47c4cdd18b9b4b3ed3e301342c9 (patch)
treefa29e66b425a96a5ff6b1d15f6bc8eff50065960
parent20b9c6914333e8043cea4366609e4c8f8728180b (diff)
Make activities private by default, completing support for invite-only activities.
This change shouldn't break anything since sugar.presence now explicitly sets public activities to be public.
-rw-r--r--src/presenceservice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/presenceservice.py b/src/presenceservice.py
index e67ab50..8b9f877 100644
--- a/src/presenceservice.py
+++ b/src/presenceservice.py
@@ -727,7 +727,7 @@ class PresenceService(ExportedGObject):
# change the default to private=True.
_logger.debug('ShareActivity(actid=%r, atype=%r, name=%r, '
'properties=%r)', actid, atype, name, properties)
- self._share_activity(actid, atype, name, properties, False,
+ self._share_activity(actid, atype, name, properties, True,
async_cb, async_err_cb)
def _get_preferred_plugin(self):