mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
support editing artist/album for music video
This commit is contained in:
parent
9821faf566
commit
cc1f30b9ff
@ -272,6 +272,14 @@ namespace MediaBrowser.Api
|
||||
musicAlbum.MusicBrainzReleaseGroupId = request.GetProviderId("MusicBrainzReleaseGroupId");
|
||||
}
|
||||
|
||||
var musicVideo = item as MusicVideo;
|
||||
|
||||
if (musicVideo != null)
|
||||
{
|
||||
musicVideo.Artist = request.Artists[0];
|
||||
musicVideo.Album = request.Album;
|
||||
}
|
||||
|
||||
var series = item as Series;
|
||||
if (series != null)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user