Fix FSRS easy interval being same as good interval in relearning cards

https://github.com/ankitects/anki/pull/3236#issuecomment-2187787774
This commit is contained in:
user1823 2024-06-25 11:38:58 +05:30 committed by GitHub
parent 0d8d816a0c
commit 9d1342beb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -135,7 +135,7 @@ impl RelearnState {
fn answer_easy(self, ctx: &StateContext) -> ReviewState {
let scheduled_days = if let Some(states) = &ctx.fsrs_next_states {
let (minimum, maximum) = ctx.min_and_max_review_intervals(1);
let interval = states.easy.interval;
let interval = states.easy.interval + 1;
ctx.with_review_fuzz(interval as f32, minimum, maximum)
} else {
self.review.scheduled_days + 1