1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

Fixed: Escape Characters as needed for *znab queries

Fixes #6799

[common]
This commit is contained in:
bakerboy448
2021-12-07 19:46:44 -06:00
committed by Qstick
parent 0ee9981cba
commit 3fcc395964
2 changed files with 45 additions and 1 deletions
@@ -204,7 +204,8 @@ namespace NzbDrone.Core.Indexers.Newznab
private static string NewsnabifyTitle(string title)
{
return title.Replace("+", "%20");
var newtitle = title.Replace("+", " ");
return Uri.EscapeDataString(newtitle);
}
public Func<IDictionary<string, string>> GetCookies { get; set; }