From 1ae7b70f3ce045339ed62062537d89f26562fb70 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 9 Apr 2013 14:01:39 -0400 Subject: [PATCH] Don't show data streams in media info --- dashboard-ui/scripts/Itemdetailpage.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js index fa595bcd0c..1591128fcf 100644 --- a/dashboard-ui/scripts/Itemdetailpage.js +++ b/dashboard-ui/scripts/Itemdetailpage.js @@ -476,6 +476,10 @@ var stream = item.MediaStreams[i]; + if (stream.Type == "Data") { + continue; + } + if (stream.Type == "Video") { hasVideo = true; }