Merge pull request #6862 from 1337joe/query-instead-of-filtering

This commit is contained in:
Cody Robibero
2021-11-20 08:50:39 -07:00
committed by GitHub
6 changed files with 134 additions and 162 deletions

View File

@@ -126,15 +126,6 @@ namespace MediaBrowser.Controller.Entities.Audio
return base.GetBlockUnratedType();
}
public List<MediaStream> GetMediaStreams(MediaStreamType type)
{
return MediaSourceManager.GetMediaStreams(new MediaStreamQuery
{
ItemId = Id,
Type = type
});
}
public SongInfo GetLookupInfo()
{
var info = GetItemLookupInfo<SongInfo>();