aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-19 15:32:37 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-19 15:32:37 -0400
commitdb1bf5b1b55c8012e9ca3393fd59b9469ee5aeaf (patch)
tree61dd1b04e176e9d83b931de063796cbf03756f7a /MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs
parent1d2b6329bf3d395c57ac45a0f56b2e15bbee4c22 (diff)
audio podcast
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/LocalTrailerPostScanTask.cs5
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;