mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
Replace WebUtility.UrlEncode to Uri.EscapeDataString
This commit is contained in:
committed by
Qstick
parent
aa59da2f22
commit
a7b1ef19f5
@@ -174,7 +174,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
|
||||
if (term.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
searchUrl += string.Format("?do=search&keywords={0}&search_type=t_name&category=0&include_dead_torrents=no", WebUtility.UrlEncode(term));
|
||||
searchUrl += string.Format("?do=search&keywords={0}&search_type=t_name&category=0&include_dead_torrents=no", Uri.EscapeDataString(term));
|
||||
}
|
||||
|
||||
if (categories != null && categories.Length > 0)
|
||||
|
||||
Reference in New Issue
Block a user