Browse Source

Merge branch 'develop' of github.com:RuudBurger/CouchPotatoServer into develop

pull/4342/head
Ruud 11 years ago
parent
commit
8a5f154d9e
  1. 2
      couchpotato/core/downloaders/transmission.py

2
couchpotato/core/downloaders/transmission.py

@ -121,6 +121,8 @@ class Transmission(DownloaderBase):
status = 'failed'
elif torrent['status'] == 0 and torrent['percentDone'] == 1:
status = 'completed'
elif torrent['status'] == 16 and torrent['percentDone'] == 1:
status = 'completed'
elif torrent['status'] in [5, 6]:
status = 'seeding'

Loading…
Cancel
Save