Fix torrents being added in wrong paused/active state on state load.

This should fix #27.
This commit is contained in:
Andrew Resch 2008-02-28 20:55:06 +00:00
parent a65251807b
commit ba6018f3f3
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ class TorrentManager(component.Component):
# Resume any torrents that need to be resumed
for key in add_paused.keys():
if add_paused[key] == True:
if add_paused[key] == False:
self.torrents[key].handle.resume()
def save_state(self):