mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-22 01:23:43 +00:00
Merge pull request #817 from KontiSR/dev_nyaatorrent_qualityparsing
Fixed the qualityparsing for nyaatorrent search results
This commit is contained in:
commit
2a8c00e774
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class NyaaProvider(generic.TorrentProvider):
|
||||||
|
|
||||||
def getQuality(self, item, anime=False):
|
def getQuality(self, item, anime=False):
|
||||||
title = item.title
|
title = item.title
|
||||||
quality = Quality.sceneQuality(title)
|
quality = Quality.sceneQuality(title, anime)
|
||||||
return quality
|
return quality
|
||||||
|
|
||||||
def findSearchResults(self, show, episodes, search_mode, manualSearch=False):
|
def findSearchResults(self, show, episodes, search_mode, manualSearch=False):
|
||||||
|
|
Loading…
Reference in a new issue