mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Fix optimal retention caps
This commit is contained in:
parent
aee6fcf456
commit
a1f4bcb3cb
1 changed files with 2 additions and 2 deletions
|
@ -60,8 +60,8 @@ impl Collection {
|
||||||
.is_ok()
|
.is_ok()
|
||||||
},
|
},
|
||||||
)?
|
)?
|
||||||
.max(0.8)
|
.max(0.75)
|
||||||
.min(0.97) as f32)
|
.min(0.95) as f32)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_optimal_retention_parameters(
|
pub fn get_optimal_retention_parameters(
|
||||||
|
|
Loading…
Reference in a new issue