From 14d9b6cfcb0d1ccc2fdb7766b3c217d57ab9c717 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Mon, 20 Feb 2017 12:44:27 +0000 Subject: [PATCH] Temp workaround for critical pickle trackers lt bug --- deluge/core/torrentmanager.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 1271eb55c..0e5a3bf7b 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -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,