mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-20 11:50:51 +02:00
Fixed: (AroLol) Make login possible without 2FA
This commit is contained in:
parent
6a43eb0031
commit
0ed5bfe0d0
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ public AroLol(IIndexerHttpClient httpClient,
|
|||
protected override HttpRequestBuilder AuthLoginRequestBuilder()
|
||||
{
|
||||
return base.AuthLoginRequestBuilder()
|
||||
.AddFormParameter("twofa", Settings.TwoFactorAuthCode.Trim());
|
||||
.AddFormParameter("twofa", Settings.TwoFactorAuthCode?.Trim() ?? "");
|
||||
}
|
||||
|
||||
protected override bool CheckForLoginError(HttpResponse response)
|
||||
|
|
|
|||
Loading…
Reference in a new issue