mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
ignore priority when reviewing early
This commit is contained in:
parent
222503ea8f
commit
913fe96c07
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ class Deck(object):
|
||||||
id = self.s.scalar("""
|
id = self.s.scalar("""
|
||||||
select id from cards
|
select id from cards
|
||||||
where type = 1 and isDue = 0 and priority in (1,2,3,4)
|
where type = 1 and isDue = 0 and priority in (1,2,3,4)
|
||||||
order by priority desc, combinedDue
|
order by combinedDue
|
||||||
limit 1""")
|
limit 1""")
|
||||||
return id
|
return id
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue