mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
"fix" v1 scheduler breaking after burySiblings change
This commit is contained in:
parent
cec5a260e5
commit
5729e9e336
1 changed files with 3 additions and 1 deletions
|
@ -848,7 +848,9 @@ did = ?, queue = %s, due = ?, usn = ? where id = ?"""
|
||||||
self.col.usn(),
|
self.col.usn(),
|
||||||
)
|
)
|
||||||
|
|
||||||
def buryCards(self, cids: List[int]) -> None: # type: ignore[override]
|
def buryCards(self, cids: List[int], manual: bool = False) -> None:
|
||||||
|
# v1 only supported automatic burying
|
||||||
|
assert not manual
|
||||||
self.col.log(cids)
|
self.col.log(cids)
|
||||||
self.remFromDyn(cids)
|
self.remFromDyn(cids)
|
||||||
self.removeLrn(cids)
|
self.removeLrn(cids)
|
||||||
|
|
Loading…
Reference in a new issue