Browse Source
Merge pull request #7273 from allthestairs/patch-1
Fix Torrentleech .torrent URLs
pull/7267/head
Ruud Burger
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
couchpotato/core/media/_base/providers/torrent/torrentleech.py
|
|
@ -50,7 +50,7 @@ class Base(TorrentProvider): |
|
|
|
results.append({ |
|
|
|
'id': link['href'].replace('/torrent/', ''), |
|
|
|
'name': six.text_type(link.string), |
|
|
|
'url': url['href'], |
|
|
|
'url': self.urls['download'] % url['href'], |
|
|
|
'detail_url': self.urls['download'] % details['href'], |
|
|
|
'size': self.parseSize(result.find_all('td')[4].string), |
|
|
|
'seeders': tryInt(result.find('td', attrs = {'class': 'seeders'}).string), |
|
|
|