From 5f0694deb2f39e01e8190834327ce01b59fca648 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 29 Oct 2017 10:04:05 +0000 Subject: [#3044] [Core] Ignore resume data timestamps on startup The timestamps of torrent data files are being modified after the resume data is stored and upon resuming an error is raised because the files fail resume data checks. So ignore this check as it is not reliable. --- deluge/core/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deluge/core/core.py b/deluge/core/core.py index 0f1e310c1..51e5ef464 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -107,6 +107,8 @@ class Core(component.Component): self.settings.user_agent = "Deluge %s" % deluge.common.get_version() # Increase the alert queue size so that alerts don't get lost self.settings.alert_queue_size = 10000 + # Ignore buggy resume data timestamps checking #3044. + self.settings.ignore_resume_timestamps = True # Set session settings self.settings.send_redundant_have = True -- cgit