From d285cbb0211472201254faa9e7ecf81eabafdc44 Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 20 Dec 2022 15:20:06 -0600 Subject: [PATCH] (SecretCinema) Avoid double HtmlDecode #1238 --- src/NzbDrone.Core/Indexers/Definitions/SecretCinema.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/SecretCinema.cs b/src/NzbDrone.Core/Indexers/Definitions/SecretCinema.cs index afa3927a4..75381c628 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/SecretCinema.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/SecretCinema.cs @@ -119,7 +119,7 @@ namespace NzbDrone.Core.Indexers.Definitions var release = new GazelleInfo() { Guid = string.Format("SecretCinema-{0}", id), - Title = WebUtility.HtmlDecode(title), + Title = title, Container = torrent.Encoding, Files = torrent.FileCount, Grabs = torrent.Snatches,