mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
Replace WebUtility.UrlEncode to Uri.EscapeDataString
This commit is contained in:
committed by
Qstick
parent
aa59da2f22
commit
a7b1ef19f5
@@ -184,7 +184,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
searchString = match.Value;
|
||||
}
|
||||
|
||||
var episodeSearchUrl = searchUrl + WebUtility.UrlEncode(searchString);
|
||||
var episodeSearchUrl = searchUrl + Uri.EscapeDataString(searchString);
|
||||
|
||||
var request = new IndexerRequest(episodeSearchUrl, null);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user