Browse Source

Don't try to search SceneAccess for BR-Disk. fix #2188

pull/2167/merge
Ruud 12 years ago
parent
commit
5f5f17112a
  1. 8
      couchpotato/core/providers/torrent/sceneaccess/main.py

8
couchpotato/core/providers/torrent/sceneaccess/main.py

@ -29,9 +29,13 @@ class SceneAccess(TorrentProvider):
def _search(self, movie, quality, results):
cat = self.getCatId(quality['identifier'])
if not cat:
return
url = self.urls['search'] % (
self.getCatId(quality['identifier'])[0],
self.getCatId(quality['identifier'])[0]
cat[0],
cat[0]
)
arguments = tryUrlencode({

Loading…
Cancel
Save