mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-05 15:38:19 +08:00
fix(yemapt): judge tag list none
This commit is contained in:
@@ -105,7 +105,7 @@ class YemaSpider:
|
|||||||
category = MediaType.UNKNOWN.value
|
category = MediaType.UNKNOWN.value
|
||||||
pass
|
pass
|
||||||
|
|
||||||
torrentLabelIds = result.get('tagList')
|
torrentLabelIds = result.get('tagList', []) or []
|
||||||
torrentLabels = []
|
torrentLabels = []
|
||||||
for labelId in torrentLabelIds:
|
for labelId in torrentLabelIds:
|
||||||
if self._labels.get(labelId) is not None:
|
if self._labels.get(labelId) is not None:
|
||||||
|
|||||||
Reference in New Issue
Block a user