mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
count per-day learning cards in deck list
This commit is contained in:
parent
a742784873
commit
20c0ae2e33
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ select sum(left/1000) from
|
||||||
return self.col.db.scalar(
|
return self.col.db.scalar(
|
||||||
"""
|
"""
|
||||||
select count() from
|
select count() from
|
||||||
(select 1 from cards where did = ? and queue = 2
|
(select 1 from cards where did = ? and queue in (2,3) and
|
||||||
and due <= ? limit ?)""",
|
and due <= ? limit ?)""",
|
||||||
did, self.today, lim)
|
did, self.today, lim)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue