# HG changeset patch # User Dennis Fink # Date 2018-12-26 19:29:47 # Node ID 80daf6dd0f86c2c10d65e0f6454e6f14f6b2a64f # Parent 935466c16cae76336b3509452ad1b771562f2576 Change toot to unlisted diff --git a/spaceapi/utils.py b/spaceapi/utils.py --- a/spaceapi/utils.py +++ b/spaceapi/utils.py @@ -72,7 +72,7 @@ def post_toot(toot): access_token=current_app.config['MASTODON_USERCRED_FILE'], api_base_url='https://chaos.social' ) - api.status_post(toot, visibility='public') + api.status_post(toot, visibility='unlisted') class Singleton: