Browse Source

Update torrentpotato.py

Fix indentation
pull/7325/head
mrlt8 5 years ago
committed by GitHub
parent
commit
a73ab1cd8c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      couchpotato/core/media/_base/providers/torrent/torrentpotato.py

16
couchpotato/core/media/_base/providers/torrent/torrentpotato.py

@ -44,14 +44,14 @@ class Base(TorrentProvider):
elif torrents.get('results'):
for torrent in torrents.get('results', []):
if re.match('^(http|https|ftp)://.*$', torrent.get('download_url')):
req = requests.get(torrent.get('download_url'), allow_redirects = False)
if req.status_code == 302 and re.match('^magnet:.*$', req.headers["Location"]):
torrent['download_url'] = req.headers["Location"]
proto = "torrent_magnet"
else:
proto = "transmission"
else:
proto = "torrent_magnet"
req = requests.get(torrent.get('download_url'), allow_redirects = False)
if req.status_code == 302 and re.match('^magnet:.*$', req.headers["Location"]):
torrent['download_url'] = req.headers["Location"]
proto = "torrent_magnet"
else:
proto = "transmission"
else:
proto = "torrent_magnet"
results.append({
'id': torrent.get('torrent_id'),

Loading…
Cancel
Save