summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2017-10-29 10:04:05 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2017-10-29 10:04:05 +0000
commit5f0694deb2f39e01e8190834327ce01b59fca648 (patch)
tree7471eff9eda5b7965847f9c9b68da008a39e06c9
parent6d14be18b09e83cea4c049f6f3e7c9771b04eda6 (diff)
downloaddeluge-5f0694deb2f39e01e8190834327ce01b59fca648.tar.gz
deluge-5f0694deb2f39e01e8190834327ce01b59fca648.tar.bz2
deluge-5f0694deb2f39e01e8190834327ce01b59fca648.zip
[#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.
-rw-r--r--deluge/core/core.py2
1 files changed, 2 insertions, 0 deletions
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