Compare commits
No commits in common. "c7ccf80b2ac45c81ec4d562e669aa1cb09933e77" and "d7d7f8ab384555d0f867ba8512ae94984be733ef" have entirely different histories.
c7ccf80b2a
...
d7d7f8ab38
1 changed files with 3 additions and 1 deletions
4
scl.py
4
scl.py
|
@ -348,11 +348,13 @@ with Session(engine) as session:
|
||||||
", ".join(updated_properties)
|
", ".join(updated_properties)
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
updated_entries.append("")
|
||||||
|
updated_entries.append(hashtag_string)
|
||||||
if max_event_class["is_postable"] and existing_record.initial_post_id:
|
if max_event_class["is_postable"] and existing_record.initial_post_id:
|
||||||
post_result = mastodon_client.status_post(
|
post_result = mastodon_client.status_post(
|
||||||
status="\n".join(updated_entries),
|
status="\n".join(updated_entries),
|
||||||
in_reply_to_id=existing_record.most_recent_post_id,
|
in_reply_to_id=existing_record.most_recent_post_id,
|
||||||
visibility="unlisted",
|
visibility="public",
|
||||||
language="en",
|
language="en",
|
||||||
)
|
)
|
||||||
existing_record.most_recent_post_id = post_result["id"]
|
existing_record.most_recent_post_id = post_result["id"]
|
||||||
|
|
Loading…
Reference in a new issue