From 50262112b8bb8a8e4e26c0af718d677d1cad474f Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 24 Nov 2013 00:27:47 +0100 Subject: [PATCH] Use release_name --- couchpotato/core/providers/torrent/torrentpotato/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/torrent/torrentpotato/main.py b/couchpotato/core/providers/torrent/torrentpotato/main.py index 15ab323d..99511578 100644 --- a/couchpotato/core/providers/torrent/torrentpotato/main.py +++ b/couchpotato/core/providers/torrent/torrentpotato/main.py @@ -49,7 +49,7 @@ class TorrentPotato(TorrentProvider): results.append({ 'id': torrent.get('torrent_id'), 'protocol': 'torrent' if re.match('^(http|https|ftp)://.*$', torrent.get('download_url')) else 'torrent_magnet', - 'name': toUnicode(torrent.get('name')), + 'name': toUnicode(torrent.get('release_name')), 'url': torrent.get('download_url'), 'detail_url': torrent.get('details_url'), 'size': torrent.get('size'),