Disable some things before snapshot

This commit is contained in:
2015-10-03 05:12:22 -05:00
parent 408ff50404
commit 4daeeb7beb
2 changed files with 3 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ class Session(object):
self.db[name] = []
for i in data:
if utils.find_item(i["id"], self.db[name]) == None and utils.is_allowed(i, self.settings["twitter"]["ignored_clients"]) == True:
i = self.check_quoted_status(i)
# i = self.check_quoted_status(i)
if self.settings["general"]["reverse_timelines"] == False: self.db[name].append(i)
else: self.db[name].insert(0, i)
num = num+1