Revert to public, that breaks following the incident hashtag

This commit is contained in:
Liam Steckler 2024-01-13 15:03:44 -08:00
parent bec08bcf48
commit c5cdf4a2ca

4
scl.py
View file

@ -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"]