mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-07-17 21:56:07 -04:00
Fixed a bugin inverted buffers
This commit is contained in:
@@ -66,7 +66,7 @@ class Session(object):
|
||||
if self.settings["general"]["reverse_timelines"] == False:
|
||||
last_id = self.db[name][0]["id"]
|
||||
else:
|
||||
last_id = self.db[self.name][-1]["id"]
|
||||
last_id = self.db[name][-1]["id"]
|
||||
for i in data:
|
||||
if ignore_older and last_id != None:
|
||||
if i["id"] < last_id:
|
||||
|
Reference in New Issue
Block a user