From 0d959a02f8b4b3bdcbe39b2e533a51327ad3b557 Mon Sep 17 00:00:00 2001 From: Kayomani Date: Mon, 31 Aug 2015 20:59:35 +0100 Subject: [PATCH] Torznab removes aprostrophies but filtering is done with them causing items to be incorrectly removed #158 --- src/Jackett/Utils/TorznabCapsUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett/Utils/TorznabCapsUtil.cs b/src/Jackett/Utils/TorznabCapsUtil.cs index d4b593750..954355d33 100644 --- a/src/Jackett/Utils/TorznabCapsUtil.cs +++ b/src/Jackett/Utils/TorznabCapsUtil.cs @@ -79,7 +79,7 @@ namespace Jackett.Utils private static string CleanTitle(string title) { - title = title.Replace(':', ' ').Replace('.', ' ').Replace('-', ' ').Replace('_', ' ').Replace('+', ' '); + title = title.Replace(':', ' ').Replace('.', ' ').Replace('-', ' ').Replace('_', ' ').Replace('+', ' ').Replace("'", ""); return reduceSpacesRegex.Replace(title, " ").ToLowerInvariant(); } }