From 9fe5fde978ca95c94ac17bd999ebdfdbf95e889a Mon Sep 17 00:00:00 2001 From: iceypotato Date: Wed, 2 Aug 2023 11:40:53 -0700 Subject: [PATCH] Forgot to remove some extra variables --- .../ImportLists/MyAnimeList/MalListSettings.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/NzbDrone.Core/ImportLists/MyAnimeList/MalListSettings.cs b/src/NzbDrone.Core/ImportLists/MyAnimeList/MalListSettings.cs index 086f415d6..ed45d027e 100644 --- a/src/NzbDrone.Core/ImportLists/MyAnimeList/MalListSettings.cs +++ b/src/NzbDrone.Core/ImportLists/MyAnimeList/MalListSettings.cs @@ -10,12 +10,12 @@ namespace NzbDrone.Core.ImportLists.MyAnimeList public MalSettingsValidator() { RuleFor(c => c.BaseUrl).ValidRootUrl(); - RuleFor(c => c.ClientId).NotEmpty() - .OverridePropertyName("ClientId") - .WithMessage("Must input Client ID from MAL, created in the API section of your account"); - RuleFor(c => c.ClientSecret).NotEmpty() - .OverridePropertyName("ClientSecret") - .WithMessage("Must input Client Secret from MAL, created in the API section of your account"); + //RuleFor(c => c.ClientId).NotEmpty() + // .OverridePropertyName("ClientId") + // .WithMessage("Must input Client ID from MAL, created in the API section of your account"); + //RuleFor(c => c.ClientSecret).NotEmpty() + // .OverridePropertyName("ClientSecret") + // .WithMessage("Must input Client Secret from MAL, created in the API section of your account"); RuleFor(c => c.AccessToken).NotEmpty() .OverridePropertyName("SignIn") .WithMessage("Must authenticate with MyAnimeList");