From f4997f328cc5b664538464af401e0461e92c762d Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 23 Apr 2009 01:36:25 +0900 Subject: [PATCH] don't randomize on upgrade, will cause sync problems --- anki/deck.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/anki/deck.py b/anki/deck.py index d8574bad1..7ce6218d2 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -3003,8 +3003,6 @@ nextFactor, reps, thinkingTime, yesCount, noCount from reviewHistory""") deck.version = 33 deck.s.commit() if deck.version < 34: - if deck.newCardOrder == NEW_CARDS_RANDOM: - deck.randomizeNewCards() deck.updateDynamicIndices() deck.s.execute("drop view if exists acqCardsRandom") deck.version = 34