mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
bug in rev scheduling
This commit is contained in:
parent
b413b1562a
commit
c62dd41f77
1 changed files with 1 additions and 1 deletions
|
@ -582,7 +582,7 @@ did = ? and queue = 2 and due <= ? limit %d)""" % lim,
|
||||||
if not self.revCount:
|
if not self.revCount:
|
||||||
return False
|
return False
|
||||||
while self._revDids:
|
while self._revDids:
|
||||||
did = self._newDids[0]
|
did = self._revDids[0]
|
||||||
lim = min(self.queueLimit, self._deckRevLimit(did))
|
lim = min(self.queueLimit, self._deckRevLimit(did))
|
||||||
if lim:
|
if lim:
|
||||||
# fill the queue with the current did
|
# fill the queue with the current did
|
||||||
|
|
Loading…
Reference in a new issue