mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 01:43:37 +00:00
fix transmission seed time
This commit is contained in:
parent
41deb957fd
commit
6a17ffae3c
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ class TransmissionAPI(GenericClient):
|
|||
def _set_torrent_seed_time(self, result):
|
||||
|
||||
if sickbeard.TORRENT_SEED_TIME:
|
||||
time = 60 * float(sickbeard.TORRENT_SEED_TIME)
|
||||
time = int(60 * float(sickbeard.TORRENT_SEED_TIME))
|
||||
arguments = {'ids': [result.hash],
|
||||
'seedIdleLimit': time,
|
||||
'seedIdleMode': 1
|
||||
|
|
Loading…
Reference in a new issue