mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-24 22:55:21 -04:00
Fixed: (AroLol) Make login possible without 2FA
This commit is contained in:
@@ -29,7 +29,7 @@ public class AroLol : GazelleBase<AroLolSettings>
|
||||
protected override HttpRequestBuilder AuthLoginRequestBuilder()
|
||||
{
|
||||
return base.AuthLoginRequestBuilder()
|
||||
.AddFormParameter("twofa", Settings.TwoFactorAuthCode.Trim());
|
||||
.AddFormParameter("twofa", Settings.TwoFactorAuthCode?.Trim() ?? "");
|
||||
}
|
||||
|
||||
protected override bool CheckForLoginError(HttpResponse response)
|
||||
|
||||
Reference in New Issue
Block a user