diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-19 15:32:37 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-03-19 15:32:37 -0400 |
| commit | db1bf5b1b55c8012e9ca3393fd59b9469ee5aeaf (patch) | |
| tree | 61dd1b04e176e9d83b931de063796cbf03756f7a /MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs | |
| parent | 1d2b6329bf3d395c57ac45a0f56b2e15bbee4c22 (diff) | |
audio podcast
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs b/MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs index e776e58f9..10263f7d7 100644 --- a/MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs +++ b/MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs @@ -31,7 +31,10 @@ namespace MediaBrowser.Server.Implementations.Library var trailerResult = _libraryManager.GetItems(new InternalItemsQuery { IncludeItemTypes = new[] { typeof(Trailer).Name }, - //IsLocalTrailer = false + ExcludeTrailerTypes = new[] + { + TrailerType.LocalTrailer + } }); var trailers = trailerResult.Items; |
