mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Fix/Learn count not included in workload graph
This commit is contained in:
parent
f3b4284afb
commit
2b0d8a586f
1 changed files with 2 additions and 1 deletions
|
@ -293,7 +293,8 @@ impl Collection {
|
|||
(
|
||||
*result.memorized_cnt_per_day.last().unwrap_or(&0.),
|
||||
result.cost_per_day.iter().sum::<f32>(),
|
||||
result.review_cnt_per_day.iter().sum::<usize>() as u32,
|
||||
result.review_cnt_per_day.iter().sum::<usize>() as u32
|
||||
+ result.learn_cnt_per_day.iter().sum::<usize>() as u32,
|
||||
),
|
||||
))
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue