Use TMDbCollectionId instead

pull/702/head
Eric Reed 11 years ago
parent 426bf48c7a
commit eec92175f9

@ -571,7 +571,7 @@ namespace MediaBrowser.Controller.Providers
}
break;
case "BelongsToCollection":
case "TMDbCollectionId":
var tmdbCollection = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(tmdbCollection))
{

@ -67,7 +67,7 @@ namespace MediaBrowser.Providers.Savers
"TVcomId",
"RottenTomatoesId",
"MusicbrainzId",
"BelongsToCollection",
"TMDbCollectionId",
"Genres",
"Genre",
"Studios",
@ -343,7 +343,7 @@ namespace MediaBrowser.Providers.Savers
if (!string.IsNullOrEmpty(tmdbCollection))
{
builder.Append("<BelongsToCollection>" + SecurityElement.Escape(tmdbCollection) + "</BelongsToCollection>");
builder.Append("<TMDbCollectionId>" + SecurityElement.Escape(tmdbCollection) + "</TMDbCollectionId>");
}
if (item.Taglines.Count > 0)

Loading…
Cancel
Save