From ab9451253cdf0e3a322509f4c9163650dd0eac60 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 29 Jan 2011 11:01:43 +0900 Subject: [PATCH] now all clients are updated, set delay1 = 0 if 600 --- anki/deck.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/anki/deck.py b/anki/deck.py index 33a5f1e05..1a9cec6cb 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -3741,8 +3741,7 @@ class DeckStorage(object): update cards set type = type - 3 where type between 0 and 2 and priority = -3""") # - new delay1 handling if deck.delay1 > 7: - # we treat 600==0 to avoid breaking older clients - deck.delay1 = 600 + deck.delay1 = 0 # unsuspend buried/rev early - can remove priorities in the future ids = deck.s.column0( "select id from cards where type > 2 or priority between -2 and -1")