mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fixed issue with appending UNNOWN qualities to provider results after being sorted.
This commit is contained in:
parent
bf41ba59be
commit
899d03b5fe
1 changed files with 1 additions and 1 deletions
|
@ -270,7 +270,7 @@ class GenericProvider:
|
|||
for item in itemList:
|
||||
quality = self.getQuality(item, anime=show.is_anime)
|
||||
if quality == Quality.UNKNOWN:
|
||||
itemsUnknown += item
|
||||
itemsUnknown += [item]
|
||||
else:
|
||||
if quality not in items:
|
||||
items[quality] = [item]
|
||||
|
|
Loading…
Reference in a new issue