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:
parent
5696d9947b
commit
1ae7b70f3c
1 changed files with 4 additions and 0 deletions
|
@ -476,6 +476,10 @@
|
||||||
|
|
||||||
var stream = item.MediaStreams[i];
|
var stream = item.MediaStreams[i];
|
||||||
|
|
||||||
|
if (stream.Type == "Data") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (stream.Type == "Video") {
|
if (stream.Type == "Video") {
|
||||||
hasVideo = true;
|
hasVideo = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue