Got mal import button to popup

This commit is contained in:
iceypotato 2023-07-17 11:13:45 -07:00
parent 7fd74f59ad
commit 47d2e2698d
1 changed files with 1 additions and 1 deletions

View File

@ -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)