aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/Progressive/VideoService.cs
diff options
context:
space:
mode:
authorTim Hobbs <jesus.tesh@gmail.com>2014-04-08 09:24:03 -0700
committerTim Hobbs <jesus.tesh@gmail.com>2014-04-08 09:24:03 -0700
commit48f22f96774d67e23b2603407ab41595e5dfae37 (patch)
tree0981335cae0864a83415df357af857c6f92ba288 /MediaBrowser.Api/Playback/Progressive/VideoService.cs
parentf64c7bb0c0702445a4dbcffdae55dcc36da6d931 (diff)
parent389d0ec7fdb05259a2b808b6733a1977f482268c (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'MediaBrowser.Api/Playback/Progressive/VideoService.cs')
-rw-r--r--MediaBrowser.Api/Playback/Progressive/VideoService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/VideoService.cs b/MediaBrowser.Api/Playback/Progressive/VideoService.cs
index 855c03691..0d0985467 100644
--- a/MediaBrowser.Api/Playback/Progressive/VideoService.cs
+++ b/MediaBrowser.Api/Playback/Progressive/VideoService.cs
@@ -186,7 +186,7 @@ namespace MediaBrowser.Api.Playback.Progressive
private string GetAudioArguments(StreamState state)
{
// If the video doesn't have an audio stream, return a default.
- if (state.AudioStream == null)
+ if (state.AudioStream == null && state.HasMediaStreams)
{
return string.Empty;
}