diff --git a/couchpotato/core/providers/torrent/kickasstorrents/main.py b/couchpotato/core/providers/torrent/kickasstorrents/main.py index 0f386043..4fd7b760 100644 --- a/couchpotato/core/providers/torrent/kickasstorrents/main.py +++ b/couchpotato/core/providers/torrent/kickasstorrents/main.py @@ -77,6 +77,8 @@ class KickAssTorrents(TorrentProvider): new['id'] = temp.get('id')[-8:] new['name'] = link.text new['url'] = td.findAll('a', 'idownload')[1]['href'] + if new['url'][:2] == '//': + new['url'] = 'http:%s' % new['url'] new['score'] = 20 if td.find('a', 'iverif') else 0 elif column_name is 'size': new['size'] = self.parseSize(td.text)