From 011a9aea0a163fbb36aec55bad36f631dcebe9a4 Mon Sep 17 00:00:00 2001 From: Liam Steckler Date: Thu, 29 May 2025 13:36:08 -0700 Subject: [PATCH] Make all posts public visibility until we figure out an alternate solution for Bluesky --- scl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scl.py b/scl.py index 666d916..e964b2e 100644 --- a/scl.py +++ b/scl.py @@ -432,7 +432,7 @@ with Session(engine) as session: post_result = mastodon_client.status_post( status="\n".join(updated_entries), in_reply_to_id=existing_record.most_recent_post_id, - visibility="unlisted", + visibility="public", language="en", ) existing_record.most_recent_post_id = post_result["id"]