1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

New: Remove Basic Auth

Closes #7597
This commit is contained in:
Mark McDowall
2025-02-16 19:36:02 -08:00
parent 609e964794
commit 0f9e063e21
6 changed files with 18 additions and 96 deletions
@@ -205,8 +205,8 @@ namespace NzbDrone.Core.Configuration
if (enabled)
{
SetValue("AuthenticationMethod", AuthenticationType.Basic);
return AuthenticationType.Basic;
SetValue("AuthenticationMethod", AuthenticationType.Forms);
return AuthenticationType.Forms;
}
return Enum.TryParse<AuthenticationType>(_authOptions.Method, out var enumValue)