mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
fix flag changes in browser not syncing
This commit is contained in:
parent
6661ba8a77
commit
00f171e6c3
1 changed files with 1 additions and 1 deletions
|
@ -937,4 +937,4 @@ and type=0""", [intTime(), self.usn()])
|
|||
def setUserFlag(self, flag, cids):
|
||||
assert 0 <= flag <= 7
|
||||
self.db.execute("update cards set flags = (flags & ~?) | ?, usn=?, mod=? where id in %s" %
|
||||
ids2str(cids), 0b111, flag, self._usn, intTime())
|
||||
ids2str(cids), 0b111, flag, self.usn(), intTime())
|
||||
|
|
Loading…
Reference in a new issue