mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-15 03:52:31 +01:00
Fix download links for FileList when passkey contains spaces
This commit is contained in:
parent
d8222c066c
commit
2b2fd5a175
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ private string GetDownloadUrl(string torrentId)
|
|||
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