mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-11 03:55:43 +00:00
[#3044|Core] Stop libtorrent checking file timestamps in resume data
* The verfication of timestamps of files on disc against those in resume data can be buggy and sends torrents to error state for no apparent reason. It has also been removed in latest version of libtorrent so disabling this check.
This commit is contained in:
parent
29191e6a58
commit
85a1e478fe
@ -113,7 +113,9 @@ class Core(component.Component):
|
||||
|
||||
# Start the libtorrent session.
|
||||
log.debug('Starting session (fingerprint: %s, user_agent: %s)', deluge_fingerprint, user_agent)
|
||||
settings_pack = {'peer_fingerprint': deluge_fingerprint, 'user_agent': user_agent}
|
||||
settings_pack = {'peer_fingerprint': deluge_fingerprint,
|
||||
'user_agent': user_agent,
|
||||
'ignore_resume_timestamps': True}
|
||||
self.session = lt.session(settings_pack, flags=0)
|
||||
|
||||
# Load the settings, if available.
|
||||
|
Loading…
x
Reference in New Issue
Block a user