mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
[#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.
This commit is contained in:
parent
6d14be18b0
commit
5f0694deb2
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue