Rewrite for dictionary indexer

This commit is contained in:
2026-08-19 18:00:03 +03:00
parent 746071125a
commit e7023752f1
4 changed files with 10 additions and 14 deletions
+1 -1
View File
@@ -581,7 +581,7 @@ impl RepetitionsState {
let words = &state.dictionary;
let stats = &mut indices
.map(|i| {
let word = words.get(i).unwrap();
let word = &words[i];
CardStatistics {
id: 0.into(),
word_id: word.id,