mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Fix stop seed ratio to only stop Seeding torrents.
This commit is contained in:
parent
b5078571a2
commit
174ea3c35e
1 changed files with 8 additions and 7 deletions
|
@ -65,13 +65,14 @@ class TorrentQueue(component.Component):
|
|||
stop_ratio = self.config["stop_seed_ratio"]
|
||||
|
||||
for torrent_id in self.torrents.get_torrent_list():
|
||||
if self.torrents[torrent_id].get_ratio() >= stop_ratio:
|
||||
# This torrent is at or exceeding the stop ratio so we need to
|
||||
# pause or remove it from the session.
|
||||
if self.config["remove_seed_at_ratio"]:
|
||||
self.torrents.remove(torrent_id, False, False)
|
||||
else:
|
||||
self.torrents[torrent_id].pause()
|
||||
if self.torrents[torrent_id].handle.is_seed():
|
||||
if self.torrents[torrent_id].get_ratio() >= stop_ratio:
|
||||
# This torrent is at or exceeding the stop ratio so we need to
|
||||
# pause or remove it from the session.
|
||||
if self.config["remove_seed_at_ratio"]:
|
||||
self.torrents.remove(torrent_id, False, False)
|
||||
else:
|
||||
self.torrents[torrent_id].pause()
|
||||
|
||||
def update_queue(self):
|
||||
# Updates the queueing order and max active states
|
||||
|
|
Loading…
Add table
Reference in a new issue