Upgrade older confs instead of just dying.

Fix major logic error when checking if an update is needed.
This commit is contained in:
John Garland 2009-12-16 13:46:39 +00:00
parent 3c5d5aa16e
commit fe6c89a2e1
2 changed files with 5 additions and 1 deletions

View file

@ -51,6 +51,7 @@
==== Blocklist ====
* Fix blocklist not working for all locales
* Fix blocklist checking for updates when it shouldn't
=== Deluge 1.2.0_rc4 (24 November 2009) ===
==== Core ====

View file

@ -87,13 +87,16 @@ class Core(CorePluginBase):
self.reader = create_reader(self.config["list_type"], self.config["list_compression"])
if type(self.config["last_update"]) is not float:
self.config.config["last_update"] = 0.0
update_now = False
if self.config["load_on_start"]:
if self.config["last_update"]:
now = datetime.now()
last_update = datetime.fromtimestamp(self.config["last_update"])
check_period = timedelta(days=self.config["check_after_days"])
if not self.config["last_update"] or last_update + check_period >= now:
if not self.config["last_update"] or last_update + check_period < now:
update_now = True
else:
self.use_cache = True