Don't propogate limit extensions in v3 scheduler (#1724)

This commit is contained in:
RumovZ 2022-03-18 10:16:31 +01:00 committed by GitHub
parent 02c580e4f8
commit 5781e86995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,6 +57,7 @@ impl Collection {
};
if let Some(mut deck) = self.storage.get_deck(did)? {
self.update_deck_stats_single(today, usn, &mut deck, mutator)?;
if !self.get_config_bool(BoolKey::Sched2021) {
for mut deck in self.storage.parent_decks(&deck)? {
self.update_deck_stats_single(today, usn, &mut deck, mutator)?;
}
@ -64,6 +65,7 @@ impl Collection {
self.update_deck_stats_single(today, usn, &mut deck, mutator)?;
}
}
}
Ok(())
}