fix: 种子分类为空时被删除

This commit is contained in:
WithdewHua 2023-09-22 21:26:43 +08:00
parent 48f6a45194
commit eb6a6eee0a

View File

@ -644,7 +644,7 @@ class TorrentRemover(_PluginBase):
return None return None
if self._torrentstates and torrent.state not in self._torrentstates: if self._torrentstates and torrent.state not in self._torrentstates:
return None return None
if self._torrentcategorys and torrent.category not in self._torrentcategorys: if self._torrentcategorys and torrent.category and torrent.category not in self._torrentcategorys:
return None return None
return { return {
"id": torrent.hash, "id": torrent.hash,