mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Fix torrents being added in wrong paused/active state on state load.
This should fix #27.
This commit is contained in:
parent
a65251807b
commit
ba6018f3f3
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue