From 3e95bc405699020644b48d6dbff6941cbea1a08c Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 30 Sep 2023 22:15:25 +0300 Subject: [PATCH] Fixed: (TorrentPotato) Title not being decoded --- .../Indexers/Definitions/TorrentPotato/TorrentPotatoParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,