mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
Fix preset: search ignoring cards in filtered decks (#2997)
This commit is contained in:
parent
adbeb95291
commit
6d62ca1cf5
1 changed files with 1 additions and 1 deletions
|
|
@ -853,7 +853,7 @@ impl SqlWriter<'_> {
|
|||
}
|
||||
});
|
||||
ids_to_string(&mut str_ids, deck_ids);
|
||||
write!(self.sql, "c.did in {str_ids}").unwrap();
|
||||
write!(self.sql, "c.did in {str_ids} or c.odid in {str_ids}").unwrap();
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue