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

@@ -827,6 +827,15 @@ namespace MediaBrowser.XbmcMetadata.Parsers
}
break;
}
case "tvmazeid":
{
var id = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(id))
{
item.SetProviderId(MetadataProviders.TvMaze, id);
}
break;
}
case "audiodbartistid":
{
var id = reader.ReadElementContentAsString();