mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
disable lastSync fudging again
This commit is contained in:
parent
2a8ef89ee5
commit
da97701b2d
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class SyncTools(object):
|
||||||
l = self._lastSync(); r = self.server._lastSync()
|
l = self._lastSync(); r = self.server._lastSync()
|
||||||
# set lastSync to the lower of the two sides
|
# set lastSync to the lower of the two sides
|
||||||
if l != r:
|
if l != r:
|
||||||
self.deck.lastSync = min(l, r) - 350
|
self.deck.lastSync = min(l, r)
|
||||||
else:
|
else:
|
||||||
self.deck.lastSync = l
|
self.deck.lastSync = l
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue