mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-03 22:36:22 +01:00
Fixed: Use Gazelle freelech tokens. (#465)
This commit is contained in:
parent
04e84f3a90
commit
3c9fbeabaa
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ protected virtual string GetDownloadUrl(int torrentId)
|
|||
var url = new HttpUri(_settings.BaseUrl)
|
||||
.CombinePath("/torrents.php")
|
||||
.AddQueryParam("action", "download")
|
||||
.AddQueryParam("useToken", _settings.UseFreeleechToken ? "1" : "0")
|
||||
.AddQueryParam("usetoken", _settings.UseFreeleechToken ? "1" : "0")
|
||||
.AddQueryParam("id", torrentId);
|
||||
|
||||
return url.FullUri;
|
||||
|
|
|
|||
Loading…
Reference in a new issue