aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-12 22:22:34 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-12 22:22:34 -0400
commit3e33822d1adca9982add584e20a00be8772b5f18 (patch)
tree213a1e098bb03350ea8a236735298f957795492c
parenta05a947fcfb83e8dc297310155a35306923e1d5f (diff)
For now, always encode mp4
-rw-r--r--MediaBrowser.Api/HttpHandlers/VideoHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/HttpHandlers/VideoHandler.cs b/MediaBrowser.Api/HttpHandlers/VideoHandler.cs
index 18060fcb0..4e2c6b0da 100644
--- a/MediaBrowser.Api/HttpHandlers/VideoHandler.cs
+++ b/MediaBrowser.Api/HttpHandlers/VideoHandler.cs
@@ -28,7 +28,7 @@ namespace MediaBrowser.Api.HttpHandlers
// For now we won't allow these to pass through.
// Later we'll add some intelligence to allow it when possible
- if (currentFormat.Equals("mkv", StringComparison.OrdinalIgnoreCase) || currentFormat.Equals("m4v", StringComparison.OrdinalIgnoreCase))
+ if (currentFormat.Equals("mp4", StringComparison.OrdinalIgnoreCase) || currentFormat.Equals("mkv", StringComparison.OrdinalIgnoreCase) || currentFormat.Equals("m4v", StringComparison.OrdinalIgnoreCase))
{
return true;
}