From f3722ebc4ff6551d8765a35873feac65f9851113 Mon Sep 17 00:00:00 2001 From: Chase Sterling Date: Thu, 17 Jan 2013 22:19:38 -0500 Subject: [PATCH] Don't deliver empty resume_data parameter to session.add_torrent Fixes a libtorrent crash on python 2.7 on Windows --- deluge/core/torrentmanager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 9831646b3..26c99ab12 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -383,7 +383,8 @@ class TorrentManager(component.Component): resume_data = self.legacy_get_resume_data_from_file(state.torrent_id) self.legacy_delete_resume_data(state.torrent_id) - add_torrent_params["resume_data"] = resume_data + if resume_data: + add_torrent_params["resume_data"] = resume_data else: # We have a torrent_info object or magnet uri so we're not loading from state. if torrent_info: