From 86a2fce73c6628812c8f0207f112c30631b1895a Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 17 Sep 2013 11:14:22 -0400 Subject: [PATCH] updated nuget --- dashboard-ui/scripts/mediaplayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/mediaplayer.js b/dashboard-ui/scripts/mediaplayer.js index b566e22bf..5f8a20dce 100644 --- a/dashboard-ui/scripts/mediaplayer.js +++ b/dashboard-ui/scripts/mediaplayer.js @@ -503,7 +503,7 @@ var h264Codec = 'h264'; var h264AudioCodec = 'aac'; - if (videoStream.Width && videoStream.Width <= baseParams.maxWidth) { + if (videoStream && videoStream.Width && videoStream.Width <= baseParams.maxWidth) { var videoCodec = (videoStream.Codec || '').toLowerCase();