1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Don't show data streams in media info

This commit is contained in:
Luke Pulverenti 2013-04-09 14:01:39 -04:00
parent 5696d9947b
commit 1ae7b70f3c

View file

@ -476,6 +476,10 @@
var stream = item.MediaStreams[i];
if (stream.Type == "Data") {
continue;
}
if (stream.Type == "Video") {
hasVideo = true;
}