diff --git a/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoParser.cs b/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoParser.cs index 268c1e92b..4158900f4 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoParser.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoParser.cs @@ -40,7 +40,7 @@ namespace NzbDrone.Core.Indexers.Definitions.TorrentPotato var torrentInfo = new TorrentInfo { Guid = GetGuid(torrent), - Title = torrent.release_name, + Title = WebUtility.HtmlDecode(torrent.release_name), Categories = new List { NewznabStandardCategory.Movies }, Size = torrent.size * 1000 * 1000, DownloadUrl = torrent.download_url,