Added new theme song/video endpoints

This commit is contained in:
Luke Pulverenti
2013-07-10 16:06:11 -04:00
parent d97a1af263
commit 9821faf566
8 changed files with 170 additions and 42 deletions

View File

@@ -425,6 +425,13 @@ namespace MediaBrowser.Api.UserLibrary
return artists.Any(album.HasArtist);
}
var musicVideo = i as MusicVideo;
if (musicVideo != null)
{
return artists.Any(musicVideo.HasArtist);
}
return false;
});
}