hopefully fix a bug
This commit is contained in:
parent
c07be0b25f
commit
f685f76ccb
1 changed files with 1 additions and 1 deletions
2
run.py
2
run.py
|
@ -37,7 +37,7 @@ for row in dc.fetchall():
|
||||||
else:
|
else:
|
||||||
sender = post['senderData']['username']
|
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
|
#this is the one we've already seen
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue