1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

New: My Anime List import list

Closes #5148
This commit is contained in:
iceypotato
2023-07-17 10:54:09 -07:00
committed by Mark McDowall
parent d338425951
commit 1335efd487
10 changed files with 368 additions and 0 deletions
@@ -90,6 +90,13 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
return results;
}
public List<Series> SearchForNewSeriesByMyAnimeListId(int malId)
{
var results = SearchForNewSeries($"mal:{malId}");
return results;
}
public List<Series> SearchForNewSeriesByTmdbId(int tmdbId)
{
var results = SearchForNewSeries($"tmdb:{tmdbId}");