Core server preparation for new "TV Maze Provider Plugin"

This commit is contained in:
softworkz
2016-08-23 03:26:34 +02:00
parent 430b187ef6
commit ac4023ed47
5 changed files with 33 additions and 1 deletions

View File

@@ -553,6 +553,13 @@ namespace MediaBrowser.LocalMetadata.Savers
builder.Append("<TVRageId>" + SecurityElement.Escape(externalId) + "</TVRageId>");
}
externalId = item.GetProviderId(MetadataProviders.TvMaze);
if (!string.IsNullOrEmpty(externalId))
{
builder.Append("<TvMazeId>" + SecurityElement.Escape(externalId) + "</TvMazeId>");
}
var hasTagline = item as IHasTaglines;
if (hasTagline != null)
{