fix: report subtitle spider errors

This commit is contained in:
jxxghp
2026-06-10 01:37:41 +08:00
parent 63a63d2ec6
commit a0bc22dd25
2 changed files with 44 additions and 1 deletions

View File

@@ -490,7 +490,8 @@ class IndexerModule(_ModuleBase):
search_type=search_type)
try:
return _spider.is_error, _spider.get_torrents()
result = _spider.get_torrents()
return _spider.is_error, result
finally:
del _spider