diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-28 00:19:38 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-28 00:19:38 -0400 |
| commit | 7cd1416d276cfede3de315cde434b5d78936e011 (patch) | |
| tree | 40c68e20876f77b4505b4421c424acefbb7c0347 /MediaBrowser.Controller/Entities | |
| parent | 44a270fa6fed9ef806e02a200af0bb14b5cf0a0e (diff) | |
fix music artists not showing in collections
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Folder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index ce7145a791..12183aec2f 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -1266,7 +1266,7 @@ namespace MediaBrowser.Controller.Entities var childOwner = child.IsOwnedItem ? (child.GetOwner() ?? child) : child; - if (childOwner != null) + if (childOwner != null && !(child is IItemByName)) { var childLocationType = childOwner.LocationType; if (childLocationType == LocationType.Remote || childLocationType == LocationType.Virtual) |
