diff --git a/app/modules/indexer/tnode.py b/app/modules/indexer/tnode.py index e2d98201..bcaff4fd 100644 --- a/app/modules/indexer/tnode.py +++ b/app/modules/indexer/tnode.py @@ -83,7 +83,6 @@ class TNodeSpider: results = res.json().get('data', {}).get("torrents") or [] for result in results: torrent = { - 'site': self._indexerid, 'title': result.get('title'), 'description': result.get('subtitle'), 'enclosure': self._downloadurl % (self._domain, result.get('id')), diff --git a/app/modules/indexer/torrentleech.py b/app/modules/indexer/torrentleech.py index 31d77a66..de5c6a40 100644 --- a/app/modules/indexer/torrentleech.py +++ b/app/modules/indexer/torrentleech.py @@ -47,7 +47,6 @@ class TorrentLeech: results = res.json().get('torrentList') or [] for result in results: torrent = { - 'indexer': self._indexer.get('id'), 'title': result.get('name'), 'enclosure': self._downloadurl % (self._indexer.get('domain'), result.get('fid'), result.get('filename')), 'pubdate': StringUtils.format_timestamp(result.get('addedTimestamp')),