From 47d2e2698d414d194b25fd4b619c6a13c78529c2 Mon Sep 17 00:00:00 2001 From: iceypotato Date: Mon, 17 Jul 2023 11:13:45 -0700 Subject: [PATCH] Got mal import button to popup --- src/NzbDrone.Core/ImportLists/MyAnimeList/MalImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/ImportLists/MyAnimeList/MalImport.cs b/src/NzbDrone.Core/ImportLists/MyAnimeList/MalImport.cs index 1b0b1353f..edbae072f 100644 --- a/src/NzbDrone.Core/ImportLists/MyAnimeList/MalImport.cs +++ b/src/NzbDrone.Core/ImportLists/MyAnimeList/MalImport.cs @@ -12,7 +12,7 @@ namespace NzbDrone.Core.ImportLists.MyAnimeList { public override string Name => "MyAnimeList"; public override ImportListType ListType => ImportListType.Other; - public override TimeSpan MinRefreshInterval => throw new NotImplementedException(); + public override TimeSpan MinRefreshInterval => TimeSpan.FromSeconds(10); // change this later // This constructor the first thing that is called when sonarr creates a button public MalImport(IHttpClient httpClient, IImportListStatusService importListStatusService, IConfigService configService, IParsingService parsingService, Logger logger)