diff --git a/src/program/scrapers/zilean.py b/src/program/scrapers/zilean.py index 8a7adbd5..11024ce9 100644 --- a/src/program/scrapers/zilean.py +++ b/src/program/scrapers/zilean.py @@ -112,9 +112,9 @@ def api_scrape(self, item: MediaItem) -> tuple[Dict[str, str], int]: torrents: Dict[str, str] = {} for result in response.data: - if not result.rawTitle or not result.infoHash: + if not result.raw_title or not result.info_hash: continue - torrents[result.infoHash] = result.rawTitle + torrents[result.info_hash] = result.raw_title return torrents, len(response.data) \ No newline at end of file