mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-17 04:45:46 +01:00
Fixed: (FileList) Download links when passkey contains spaces
This commit is contained in:
@@ -101,7 +101,7 @@ public class FileListParser : IParseIndexerResponse
|
||||
var url = new HttpUri(_settings.BaseUrl)
|
||||
.CombinePath("/download.php")
|
||||
.AddQueryParam("id", torrentId.ToString())
|
||||
.AddQueryParam("passkey", _settings.Passkey);
|
||||
.AddQueryParam("passkey", _settings.Passkey.Trim());
|
||||
|
||||
return url.FullUri;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user