mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Use TMDbCollectionId instead
This commit is contained in:
parent
426bf48c7a
commit
eec92175f9
@ -571,7 +571,7 @@ namespace MediaBrowser.Controller.Providers
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "BelongsToCollection":
|
case "TMDbCollectionId":
|
||||||
var tmdbCollection = reader.ReadElementContentAsString();
|
var tmdbCollection = reader.ReadElementContentAsString();
|
||||||
if (!string.IsNullOrWhiteSpace(tmdbCollection))
|
if (!string.IsNullOrWhiteSpace(tmdbCollection))
|
||||||
{
|
{
|
||||||
|
@ -67,7 +67,7 @@ namespace MediaBrowser.Providers.Savers
|
|||||||
"TVcomId",
|
"TVcomId",
|
||||||
"RottenTomatoesId",
|
"RottenTomatoesId",
|
||||||
"MusicbrainzId",
|
"MusicbrainzId",
|
||||||
"BelongsToCollection",
|
"TMDbCollectionId",
|
||||||
"Genres",
|
"Genres",
|
||||||
"Genre",
|
"Genre",
|
||||||
"Studios",
|
"Studios",
|
||||||
@ -343,7 +343,7 @@ namespace MediaBrowser.Providers.Savers
|
|||||||
|
|
||||||
if (!string.IsNullOrEmpty(tmdbCollection))
|
if (!string.IsNullOrEmpty(tmdbCollection))
|
||||||
{
|
{
|
||||||
builder.Append("<BelongsToCollection>" + SecurityElement.Escape(tmdbCollection) + "</BelongsToCollection>");
|
builder.Append("<TMDbCollectionId>" + SecurityElement.Escape(tmdbCollection) + "</TMDbCollectionId>");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.Taglines.Count > 0)
|
if (item.Taglines.Count > 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user