From c5cdf4a2ca4ffb62feeb272d8d98a2655fd4dffb Mon Sep 17 00:00:00 2001 From: Liam Steckler Date: Sat, 13 Jan 2024 15:03:44 -0800 Subject: [PATCH] Revert to public, that breaks following the incident hashtag --- scl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"]