diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-04 10:19:46 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-04 10:19:46 -0400 |
| commit | c3f2021cadc56d4cca2be0ce855dac01830eb0b0 (patch) | |
| tree | f51a96932b7868f723535be3e083beb911c93df2 /MediaBrowser.Server.Implementations/Library/Validators/BoxSetPostScanTask.cs | |
| parent | f031bb744b00d139a71036678abd6586e6595cb5 (diff) | |
left align web client content
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/Validators/BoxSetPostScanTask.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/Validators/BoxSetPostScanTask.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/Validators/BoxSetPostScanTask.cs b/MediaBrowser.Server.Implementations/Library/Validators/BoxSetPostScanTask.cs index f02c907c6..86d88f7e0 100644 --- a/MediaBrowser.Server.Implementations/Library/Validators/BoxSetPostScanTask.cs +++ b/MediaBrowser.Server.Implementations/Library/Validators/BoxSetPostScanTask.cs @@ -27,7 +27,7 @@ namespace MediaBrowser.Server.Implementations.Library.Validators foreach (var boxset in boxsets) { - foreach (var child in boxset.GetLinkedChildren().OfType<ISupportsBoxSetGrouping>()) + foreach (var child in boxset.Children.Concat(boxset.GetLinkedChildren()).OfType<ISupportsBoxSetGrouping>()) { var boxsetIdList = child.BoxSetIdList.ToList(); if (!boxsetIdList.Contains(boxset.Id)) |
