Use TMDbCollectionId instead
This commit is contained in:
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…
Reference in New Issue
Block a user