diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-07-23 02:18:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-23 02:18:37 -0400 |
| commit | 7d0a6456080a72d9a3721f13c87dd9292fc65255 (patch) | |
| tree | 2138ffc8d83096b91f8ac77939544d8b2c0369bb /MediaBrowser.Controller/Entities/InternalItemsQuery.cs | |
| parent | 79f6da09a5730e11608b4c762e07c6e89f7a886f (diff) | |
| parent | 2aeee846f421ec3a0e943d0cdcdedcdb250904ce (diff) | |
Merge pull request #1970 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalItemsQuery.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs index bf2a50202..69cab5ec5 100644 --- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs @@ -138,7 +138,7 @@ namespace MediaBrowser.Controller.Entities public string[] AlbumNames { get; set; } public string[] ArtistNames { get; set; } - public string[] ExcludeArtistNames { get; set; } + public string[] ExcludeArtistIds { get; set; } public string AncestorWithPresentationUniqueKey { get; set; } public bool GroupByPresentationUniqueKey { get; set; } @@ -154,7 +154,7 @@ namespace MediaBrowser.Controller.Entities AlbumNames = new string[] { }; ArtistNames = new string[] { }; - ExcludeArtistNames = new string[] { }; + ExcludeArtistIds = new string[] { }; ExcludeProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); BlockUnratedItems = new UnratedItem[] { }; |
