mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Merge pull request #895 from hgiesel/newlearn
Change meaning of "is:learn" to filter on type, not queue
This commit is contained in:
commit
e28c67d4f6
1 changed files with 3 additions and 3 deletions
|
@ -279,9 +279,9 @@ impl SqlWriter<'_> {
|
|||
),
|
||||
StateKind::Learning => write!(
|
||||
self.sql,
|
||||
"c.queue in ({},{})",
|
||||
CardQueue::Learn as i8,
|
||||
CardQueue::DayLearn as i8
|
||||
"c.type in ({}, {})",
|
||||
CardType::Learn as i8,
|
||||
CardType::Relearn as i8,
|
||||
),
|
||||
StateKind::Buried => write!(
|
||||
self.sql,
|
||||
|
|
Loading…
Reference in a new issue