mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
get album premiere date from songs
This commit is contained in:
parent
20014dea8c
commit
6d68612e47
@ -107,11 +107,21 @@ namespace MediaBrowser.Providers.Music
|
||||
}
|
||||
}
|
||||
|
||||
var year = songs.Select(i => i.ProductionYear ?? 1800).FirstOrDefault(i => i != 1800);
|
||||
var date = songs.Select(i => i.PremiereDate).FirstOrDefault(i => i.HasValue);
|
||||
|
||||
if (year != 1800)
|
||||
if (date != null)
|
||||
{
|
||||
album.ProductionYear = year;
|
||||
album.PremiereDate = date.Value;
|
||||
album.ProductionYear = date.Value.Year;
|
||||
}
|
||||
else
|
||||
{
|
||||
var year = songs.Select(i => i.ProductionYear ?? 1800).FirstOrDefault(i => i != 1800);
|
||||
|
||||
if (year != 1800)
|
||||
{
|
||||
album.ProductionYear = year;
|
||||
}
|
||||
}
|
||||
|
||||
if (!item.LockedFields.Contains(MetadataFields.Studios))
|
||||
|
Loading…
Reference in New Issue
Block a user