Fix #1 and forget oldest queries
This commit is contained in:
pare
bc62164100
commit
e25ae8eecc
S'han modificat 1 arxius amb 4 adicions i 2 eliminacions
|
@ -120,7 +120,7 @@ def get_new_notifications():
|
|||
|
||||
if last_posted != "":
|
||||
|
||||
if last_notif_created_at == last_posted:
|
||||
if last_notif_created_at <= last_posted:
|
||||
|
||||
cur.close()
|
||||
|
||||
|
@ -659,6 +659,8 @@ def next_move(playing_user):
|
|||
|
||||
def replying():
|
||||
|
||||
reply = False
|
||||
|
||||
moving = ''
|
||||
|
||||
content = cleanhtml(text)
|
||||
|
@ -815,7 +817,7 @@ if __name__ == '__main__':
|
|||
|
||||
n_created_datetime = n_created_at.strftime("%d/%m/%Y, %H:%M:%S")
|
||||
|
||||
if n_created_datetime < last_posted:
|
||||
if n_created_datetime <= last_posted:
|
||||
|
||||
i +=1
|
||||
|
||||
|
|
Loading…
Referencia en una nova incidència