This commit is contained in:
Auric Vente 2024-04-10 17:14:14 -06:00
parent ba17a48c00
commit d64c93a47c
1 changed files with 3 additions and 1 deletions

View File

@ -458,7 +458,7 @@ async def shitpost(ws, room_id):
# Select a random post # Select a random post
post = posts[random_int(0, len(posts) - 1)] post = posts[random_int(0, len(posts) - 1)]
print(post) number = post.get("no", "")
html = post.get("com", "") html = post.get("com", "")
if not html: if not html:
@ -483,6 +483,8 @@ async def shitpost(ws, room_id):
if not text: if not text:
text = url text = url
else:
text = f"{text}\n{url}"
await send_message(ws, text, room_id) await send_message(ws, text, room_id)