check for quotes and which 'and' to 'or'
This commit is contained in:
parent
e19b3ea42c
commit
0cc80e81a0
@ -52,7 +52,7 @@ class TodoDatabase:
|
||||
|
||||
def get_random_quote(self):
|
||||
# print(time.time())
|
||||
if ("quotes_last_updated" in self.database) and (time.time()-self.database["quotes_last_updated"] > 86400):
|
||||
if ("quotes_last_updated" in self.database) or ("quotes" in self.database) or (time.time()-self.database["quotes_last_updated"] > 86400):
|
||||
self._update_quotes()
|
||||
quote = random.choice(self.database["quotes"])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user