diff options
| author | Anthony Lavado <anthonylavado@users.noreply.github.com> | 2019-06-05 01:19:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-05 01:19:54 -0400 |
| commit | d7aaa1489c4f1abdaeb4aa80b4be770f09e5bbdc (patch) | |
| tree | 1edd9d2e5339844bd81a95fdb998ab03ce004c17 /MediaBrowser.Api/Library/LibraryService.cs | |
| parent | aee33608417533c6335f97b32aff40ceadda1758 (diff) | |
| parent | 09dfa071dc27820f1820bd56126dfa5cd5e01027 (diff) | |
Merge pull request #1427 from dkanada/fanart
Move fanart image provider to plugin
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
| -rw-r--r-- | MediaBrowser.Api/Library/LibraryService.cs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/MediaBrowser.Api/Library/LibraryService.cs b/MediaBrowser.Api/Library/LibraryService.cs index b6fec9bb7..cee96f7ab 100644 --- a/MediaBrowser.Api/Library/LibraryService.cs +++ b/MediaBrowser.Api/Library/LibraryService.cs @@ -490,18 +490,6 @@ namespace MediaBrowser.Api.Library { return false; } - else if (string.Equals(name, "FanArt", StringComparison.OrdinalIgnoreCase)) - { - if (string.Equals(type, "Season", StringComparison.OrdinalIgnoreCase)) - { - return false; - } - if (string.Equals(type, "MusicVideo", StringComparison.OrdinalIgnoreCase)) - { - return false; - } - return true; - } else if (string.Equals(name, "TheAudioDB", StringComparison.OrdinalIgnoreCase)) { return true; |
