mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Temp workaround for critical pickle trackers lt bug
This commit is contained in:
parent
df4d97c447
commit
14d9b6cfcb
1 changed files with 5 additions and 0 deletions
|
@ -575,6 +575,11 @@ class TorrentManager(component.Component):
|
|||
else:
|
||||
paused = False
|
||||
|
||||
# XXX: Temporary workaround for critical bug with RC_1_1 lt code.
|
||||
# remove this code when lt 1.2 is released.
|
||||
for tracker in torrent.trackers:
|
||||
tracker.pop('last_error', None)
|
||||
|
||||
torrent_state = TorrentState(
|
||||
torrent.torrent_id,
|
||||
torrent.filename,
|
||||
|
|
Loading…
Add table
Reference in a new issue