aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-07-23 16:13:24 -0400
committerGitHub <noreply@github.com>2016-07-23 16:13:24 -0400
commita9fb130b0329ac61a0d66edf2f9682871c57641d (patch)
tree7a14ae195a7c2a4cbe4bb760b9db3980f2712540 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs
parentd661f690f58cd05be86843d2c7c8a2984c66c2f6 (diff)
parenta0c310e0f3abdd6bbe8ab27218ac2bde6609818d (diff)
Merge pull request #1978 from MediaBrowser/beta
Beta
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
-rw-r--r--MediaBrowser.Controller/Entities/InternalItemsQuery.cs4
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[] { };