mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
update storage of genres, studios, tags, & keywords
This commit is contained in:
@@ -983,16 +983,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
|
||||
if (fields.Contains(ItemFields.Keywords))
|
||||
{
|
||||
var hasTags = item as IHasKeywords;
|
||||
if (hasTags != null)
|
||||
{
|
||||
dto.Keywords = hasTags.Keywords;
|
||||
}
|
||||
|
||||
if (dto.Keywords == null)
|
||||
{
|
||||
dto.Keywords = new List<string>();
|
||||
}
|
||||
dto.Keywords = item.Keywords;
|
||||
}
|
||||
|
||||
if (fields.Contains(ItemFields.ProductionLocations))
|
||||
|
||||
Reference in New Issue
Block a user