mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
fix regular reviews being treated as relearning in v2 sched
This commit is contained in:
parent
9c7c52b99c
commit
fd6d02bf6a
1 changed files with 1 additions and 1 deletions
|
@ -821,7 +821,7 @@ select id from cards where did in %s and queue = 2 and due <= ? limit ?)"""
|
||||||
def _answerRevCard(self, card, ease):
|
def _answerRevCard(self, card, ease):
|
||||||
delay = 0
|
delay = 0
|
||||||
early = card.odid and (card.odue > self.today)
|
early = card.odid and (card.odue > self.today)
|
||||||
type = early and 3 or 2
|
type = early and 3 or 1
|
||||||
|
|
||||||
if ease == 1:
|
if ease == 1:
|
||||||
delay = self._rescheduleLapse(card)
|
delay = self._rescheduleLapse(card)
|
||||||
|
|
Loading…
Reference in a new issue