From 357bbb308a25b11a2a03bf5555cccd16970c0a2f Mon Sep 17 00:00:00 2001 From: Liam Steckler Date: Wed, 28 Feb 2024 21:38:02 -0800 Subject: [PATCH] Update behavior of update posts --- scl.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scl.py b/scl.py index 4ff759d..fe1ed00 100644 --- a/scl.py +++ b/scl.py @@ -348,13 +348,11 @@ with Session(engine) as session: ", ".join(updated_properties) ), ) - updated_entries.append("") - updated_entries.append(hashtag_string) if max_event_class["is_postable"] and existing_record.initial_post_id: post_result = mastodon_client.status_post( status="\n".join(updated_entries), in_reply_to_id=existing_record.most_recent_post_id, - visibility="public", + visibility="unlisted", language="en", ) existing_record.most_recent_post_id = post_result["id"]