fix initial vector bug

This commit is contained in:
Pakin 2025-09-10 14:14:48 +07:00
parent 76c7f949ea
commit 0cf5f63bd0

View file

@ -120,7 +120,7 @@ impl RecipeListChange {
}
};
let mut checked = Vec::with_capacity(length_for_checking);
let mut checked: Vec<Vec<String>> = vec![Vec::new(); length_for_checking];
for ci in 0..length_for_checking {
let current_repl = (self.raw_old.get(ci), self.raw_new.get(ci));