From da97701b2df6ac83d7d1bfb61c02176dc7dfc808 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 7 Dec 2010 09:19:09 +0900 Subject: [PATCH] disable lastSync fudging again --- anki/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/sync.py b/anki/sync.py index ec803eea4..51b9d256b 100644 --- a/anki/sync.py +++ b/anki/sync.py @@ -125,7 +125,7 @@ class SyncTools(object): l = self._lastSync(); r = self.server._lastSync() # set lastSync to the lower of the two sides if l != r: - self.deck.lastSync = min(l, r) - 350 + self.deck.lastSync = min(l, r) else: self.deck.lastSync = l return True