mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-03 18:26:42 +00:00
Fixed: Download links for FileList when passkey contains spaces
This commit is contained in:
parent
1b0a20535c
commit
11c945c2dc
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ namespace NzbDrone.Core.Indexers.FileList
|
|||
var url = new HttpUri(_settings.BaseUrl)
|
||||
.CombinePath("download.php")
|
||||
.AddQueryParam("id", torrentId)
|
||||
.AddQueryParam("passkey", _settings.Passkey);
|
||||
.AddQueryParam("passkey", _settings.Passkey.Trim());
|
||||
|
||||
return url.FullUri;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue