diff --git a/ankiqt/ui/update.py b/ankiqt/ui/update.py index 30dde4f77..648e3ab5a 100644 --- a/ankiqt/ui/update.py +++ b/ankiqt/ui/update.py @@ -78,7 +78,8 @@ class LatestVersionFinder(QThread): if resp['latestVersion'] > ankiqt.appVersion: self.emit(SIGNAL("newVerAvail"), resp) diff = resp['currentTime'] - time.time() - if abs(diff) > 300: + # a fairly liberal time check - sync is more strict + if abs(diff) > 86400: self.emit(SIGNAL("clockIsOff"), diff) class Updater(QThread):