1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00

Fixed: Escape Characters as needed for *znab queries

Closes #4788
This commit is contained in:
bakerboy448
2022-04-09 23:16:20 -05:00
committed by GitHub
parent 5a08d5dc24
commit f678775e5c
2 changed files with 37 additions and 1 deletions
@@ -470,7 +470,8 @@ namespace NzbDrone.Core.Indexers.Newznab
private static string NewsnabifyTitle(string title)
{
return title.Replace("+", "%20");
title = title.Replace("+", " ");
return Uri.EscapeDataString(title);
}