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:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user