mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-08 16:53:04 +01:00
Fixed: (Orpheus) Try to actually use the token
This commit is contained in:
parent
cda373f195
commit
60f37de6af
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ protected override string GetDownloadUrl(int torrentId)
|
|||
// Orpheus fails to download if usetoken=0 so we need to only add if we will use one
|
||||
if (_settings.UseFreeleechToken)
|
||||
{
|
||||
url = url.AddQueryParam("useToken", "1");
|
||||
url = url.AddQueryParam("usetoken", "1");
|
||||
}
|
||||
|
||||
return url.FullUri;
|
||||
|
|
|
|||
Loading…
Reference in a new issue