aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-09 18:22:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-09 18:22:04 -0400
commit74a8ca9c38d17e407c70aafe2cfd42b8b13d923e (patch)
treee5f854faa1a10ec106c8ff502d9448f793b63602 /MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs
parentad6f47329f6600a42868c58056656ea8f65d2ca6 (diff)
fix case sensitive file names
Diffstat (limited to 'MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs b/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs
index f2b3474b9..2e1e54ad6 100644
--- a/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs
+++ b/MediaBrowser.Server.Implementations/Intros/DefaultIntroProvider.cs
@@ -148,7 +148,7 @@ namespace MediaBrowser.Server.Implementations.Intros
GetCustomIntros(item) :
new List<IntroInfo>();
- var trailerLimit = 2;
+ var trailerLimit = config.TrailerLimit;
if (customIntros.Count > 0)
{
trailerLimit--;