Cleanup Conflicts in Sonarr/Lidarr Pulls

Co-Authored-By: Robin Dadswell <19610103+RobinDadswell@users.noreply.github.com>
This commit is contained in:
Qstick
2021-01-24 02:22:50 -05:00
parent ffc12656ee
commit 93ba5ade9e
298 changed files with 4460 additions and 4508 deletions
@@ -68,7 +68,7 @@ namespace NzbDrone.Core.MetadataSource.Goodreads
.CreateFactory();
}
public HashSet<string> GetChangedArtists(DateTime startTime)
public HashSet<string> GetChangedAuthors(DateTime startTime)
{
return null;
}
@@ -8,6 +8,6 @@ namespace NzbDrone.Core.MetadataSource
{
Author GetAuthorInfo(string readarrId, bool useCache = true);
Author GetAuthorAndBooks(string readarrId, double minPopularity = 0);
HashSet<string> GetChangedArtists(DateTime startTime);
HashSet<string> GetChangedAuthors(DateTime startTime);
}
}
@@ -37,7 +37,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
_logger = logger;
}
public HashSet<string> GetChangedArtists(DateTime startTime)
public HashSet<string> GetChangedAuthors(DateTime startTime)
{
return null;
}
@@ -76,10 +76,10 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
public HashSet<string> GetChangedBooks(DateTime startTime)
{
return _cache.Get("ChangedAlbums", () => GetChangedAlbumsUncached(startTime), TimeSpan.FromMinutes(30));
return _cache.Get("ChangedBooks", () => GetChangedBooksUncached(startTime), TimeSpan.FromMinutes(30));
}
private HashSet<string> GetChangedAlbumsUncached(DateTime startTime)
private HashSet<string> GetChangedBooksUncached(DateTime startTime)
{
return null;
}