diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-04-11 19:30:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-11 19:30:23 +0200 |
| commit | 14674d446954b24c9754431f550c590083e7a94c (patch) | |
| tree | fc766140d5d96d63a512a1b962fd86e0ba91d161 /MediaBrowser.Api/UserLibrary/ArtistsService.cs | |
| parent | 299541f1b26136ef89741f28c7949cda4e5e485f (diff) | |
| parent | 555651aae23e788b10760d58840114d8a010da90 (diff) | |
Merge pull request #2772 from barronpm/codecleanup
MediaBrowser.Api code cleanup
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/ArtistsService.cs')
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/ArtistsService.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Api/UserLibrary/ArtistsService.cs b/MediaBrowser.Api/UserLibrary/ArtistsService.cs index adb0a440f..3d08d5437 100644 --- a/MediaBrowser.Api/UserLibrary/ArtistsService.cs +++ b/MediaBrowser.Api/UserLibrary/ArtistsService.cs @@ -126,12 +126,7 @@ namespace MediaBrowser.Api.UserLibrary protected override QueryResult<(BaseItem, ItemCounts)> GetItems(GetItemsByName request, InternalItemsQuery query) { - if (request is GetAlbumArtists) - { - return LibraryManager.GetAlbumArtists(query); - } - - return LibraryManager.GetArtists(query); + return request is GetAlbumArtists ? LibraryManager.GetAlbumArtists(query) : LibraryManager.GetArtists(query); } /// <summary> |
