handle it for realsies now

This commit is contained in:
Lynne Megido 2018-11-17 15:37:57 +10:00
parent 9f8326ae06
commit de87d7761b
Signed by: lynnesbian
GPG Key ID: FB7B970303ACE499

11
run.py
View File

@ -51,10 +51,13 @@ for row in dc.fetchall():
posted = True posted = True
toot = "Curious Cat user {} asks: {}\n\nMy answer: {}\n\nhttps://curiouscat.me/{}/post/{}".format(sender, post['comment'], post['reply'], row['cc'], post['id']) #TODO: what if this is over 500 characters? toot = "Curious Cat user {} asks: {}\n\nMy answer: {}\n\nhttps://curiouscat.me/{}/post/{}".format(sender, post['comment'], post['reply'], row['cc'], post['id']) #TODO: what if this is over 500 characters?
if settings['cw']: try:
client.status_post(toot, spoiler_text="Curious Cat post") if settings['cw']:
else: client.status_post(toot, spoiler_text="Curious Cat post")
client.status_post(toot) else:
client.status_post(toot)
except:
continue
c.execute("UPDATE data SET last_check = %s, time_between_checks = %s, latest_post = %s", (t, cfg['min_time_between_checks'], j['posts'][0]['timestamp'])) c.execute("UPDATE data SET last_check = %s, time_between_checks = %s, latest_post = %s", (t, cfg['min_time_between_checks'], j['posts'][0]['timestamp']))
if not posted: if not posted:
#we checked, and they haven't made a post #we checked, and they haven't made a post