mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-03 22:36:22 +01:00
Fixed: (FileList) Download links when passkey contains spaces
This commit is contained in:
parent
d6e8d89be4
commit
0f1d647cd7
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ private string GetDownloadUrl(uint torrentId)
|
|||
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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue