From f685f76ccbf2746476f501ecf1b9b1372235c621 Mon Sep 17 00:00:00 2001 From: Lynne Date: Thu, 15 Nov 2018 11:06:01 +1000 Subject: [PATCH] hopefully fix a bug --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 4249841..ce4ed4a 100755 --- a/run.py +++ b/run.py @@ -37,7 +37,7 @@ for row in dc.fetchall(): else: sender = post['senderData']['username'] - if int(post['timestamp']) == int(row['latest_post']): + if int(post['timestamp']) <= int(row['latest_post']): #this is the one we've already seen continue