mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
only pick non_manual_entries after ignore date
This commit is contained in:
parent
ba57c8d0d0
commit
5414aebaa9
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ pub(crate) fn single_card_revlog_to_items(
|
||||||
if entry.review_kind == RevlogReviewKind::Filtered && entry.ease_factor == 0 {
|
if entry.review_kind == RevlogReviewKind::Filtered && entry.ease_factor == 0 {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if matches!(entry.button_chosen, 1..=4) {
|
if matches!(entry.button_chosen, 1..=4) && entry.id.0 > ignore_revlogs_before.0 {
|
||||||
non_manual_entries = Some(index);
|
non_manual_entries = Some(index);
|
||||||
}
|
}
|
||||||
if matches!(
|
if matches!(
|
||||||
|
|
Loading…
Reference in a new issue