Add additional provider parsing to series file name
This commit is contained in:
parent
ca887518dd
commit
4890454935
|
@ -187,11 +187,40 @@ namespace Emby.Server.Implementations.Library.Resolvers.TV
|
||||||
{
|
{
|
||||||
var justName = Path.GetFileName(path);
|
var justName = Path.GetFileName(path);
|
||||||
|
|
||||||
var id = justName.GetAttributeValue("tvdbid");
|
var tvdbId = justName.GetAttributeValue("tvdbid");
|
||||||
|
if (!string.IsNullOrEmpty(tvdbId))
|
||||||
if (!string.IsNullOrEmpty(id))
|
|
||||||
{
|
{
|
||||||
item.SetProviderId(MetadataProvider.Tvdb, id);
|
item.SetProviderId(MetadataProvider.Tvdb, tvdbId);
|
||||||
|
}
|
||||||
|
|
||||||
|
var tvmazeId = justName.GetAttributeValue("tvmazeid");
|
||||||
|
if (!string.IsNullOrEmpty(tvmazeId))
|
||||||
|
{
|
||||||
|
item.SetProviderId(MetadataProvider.TvMaze, tvmazeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
var tmdbId = justName.GetAttributeValue("tmdbid");
|
||||||
|
if (!string.IsNullOrEmpty(tmdbId))
|
||||||
|
{
|
||||||
|
item.SetProviderId(MetadataProvider.Tmdb, tmdbId);
|
||||||
|
}
|
||||||
|
|
||||||
|
var anidbId = justName.GetAttributeValue("anidbid");
|
||||||
|
if (!string.IsNullOrEmpty(anidbId))
|
||||||
|
{
|
||||||
|
item.SetProviderId("AniDB", anidbId);
|
||||||
|
}
|
||||||
|
|
||||||
|
var aniListId = justName.GetAttributeValue("anilistid");
|
||||||
|
if (!string.IsNullOrEmpty(aniListId))
|
||||||
|
{
|
||||||
|
item.SetProviderId("AniList", aniListId);
|
||||||
|
}
|
||||||
|
|
||||||
|
var aniSearchId = justName.GetAttributeValue("anisearchid");
|
||||||
|
if (!string.IsNullOrEmpty(aniSearchId))
|
||||||
|
{
|
||||||
|
item.SetProviderId("AniSearch", aniSearchId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user