diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-20 20:15:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-20 20:15:56 -0400 |
| commit | 63fe0239e35caec6aba1c5e65581d2d1e7a4e4bd (patch) | |
| tree | cbcf39eb82276079f77baefdea1214b32c38a64b /MediaBrowser.Controller/Entities/Folder.cs | |
| parent | a2a0e1ae756b3eae6635ebb08ca1cad51898e0b8 (diff) | |
update album queries
Diffstat (limited to 'MediaBrowser.Controller/Entities/Folder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Folder.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index dc0a8d0aa..dcdd10dd6 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -1188,6 +1188,12 @@ namespace MediaBrowser.Controller.Entities return true; } + if (!string.IsNullOrWhiteSpace(query.AlbumArtistStartsWithOrGreater)) + { + Logger.Debug("Query requires post-filtering due to AlbumArtistStartsWithOrGreater"); + return true; + } + return false; } |
