mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
fix update cutoff call
This commit is contained in:
parent
2a73d58532
commit
40e9eea43f
1 changed files with 1 additions and 1 deletions
|
@ -668,7 +668,7 @@ gid in %s and queue = 2 and due <= :lim %s limit %d""" % (
|
||||||
def _checkDay(self):
|
def _checkDay(self):
|
||||||
# check if the day has rolled over
|
# check if the day has rolled over
|
||||||
if time.time() > self.dayCutoff:
|
if time.time() > self.dayCutoff:
|
||||||
self.updateCutoff()
|
self._updateCutoff()
|
||||||
self.reset()
|
self.reset()
|
||||||
|
|
||||||
# Deck finished state
|
# Deck finished state
|
||||||
|
|
Loading…
Reference in a new issue