mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-15 09:07:43 +00:00
Limiting search to English-translated only (for now)
This commit is contained in:
parent
0d54346cbd
commit
0e989fe90f
1 changed files with 2 additions and 1 deletions
|
@ -71,6 +71,7 @@ class NyaaProvider(generic.TorrentProvider):
|
||||||
return []
|
return []
|
||||||
|
|
||||||
params = {"term": search_string.encode('utf-8'),
|
params = {"term": search_string.encode('utf-8'),
|
||||||
|
"cats": '1_37', #Limit to English-translated Anime (for now)
|
||||||
"sort": '2', #Sort Descending By Seeders
|
"sort": '2', #Sort Descending By Seeders
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -152,4 +153,4 @@ class NyaaCache(tvcache.TVCache):
|
||||||
return self._addCacheEntry(title, url)
|
return self._addCacheEntry(title, url)
|
||||||
|
|
||||||
|
|
||||||
provider = NyaaProvider()
|
provider = NyaaProvider()
|
||||||
|
|
Loading…
Reference in a new issue