Merge pull request #3228 from YemaPT/fix-yemapt-taglist-none

This commit is contained in:
jxxghp
2024-11-24 16:24:38 +08:00
committed by GitHub

View File

@@ -105,7 +105,7 @@ class YemaSpider:
category = MediaType.UNKNOWN.value
pass
torrentLabelIds = result.get('tagList')
torrentLabelIds = result.get('tagList', []) or []
torrentLabels = []
for labelId in torrentLabelIds:
if self._labels.get(labelId) is not None: