diff --git a/scl.py b/scl.py index 6fac893..2b5223a 100644 --- a/scl.py +++ b/scl.py @@ -118,7 +118,7 @@ with Session(engine) as session: mastodon_post_result = mastodon.status_post( status="\n".join(updated_entries), in_reply_to_id=existing_record.most_recent_post_id, - visibility="unlisted", + visibility="public", ) existing_record.most_recent_post_id = mastodon_post_result["id"] @@ -171,7 +171,7 @@ Cause: {} active_outage.outage_user_id ), in_reply_to_id=active_outage.most_recent_post_id, - visibility="unlisted", + visibility="public", ) active_outage.most_recent_post_id = mastodon_post_result["id"]