From 9a9082529b1ed542722395a5fffc4d2eb5284aaa Mon Sep 17 00:00:00 2001 From: Samson Melamed Date: Tue, 23 Dec 2008 01:27:19 -0500 Subject: [PATCH] mass un/tagging now updates modified cards --- anki/deck.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anki/deck.py b/anki/deck.py index 12bfd1a7f..41e24f574 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -1312,7 +1312,7 @@ where id = :id""", pending) cardIds = self.s.column0( "select id from cards where factId in %s" % ids2str(ids)) - self.updateCardQACacheFromCardIds(cardIds, type="facts") + self.updateCardQACacheFromCardIds(ids, type="facts") self.updatePriorities(cardIds) self.flushMod() @@ -1340,7 +1340,7 @@ where id = :id""", pending) cardIds = self.s.column0( "select id from cards where factId in %s" % ids2str(ids)) - self.updateCardQACacheFromCardIds(cardIds, type="facts") + self.updateCardQACacheFromCardIds(ids, type="facts") self.updatePriorities(cardIds) self.flushMod()