aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-22 20:35:43 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-22 21:42:32 -0500
commitdb0bb0e070462af70c4aa2c2ae8f53311c1ea931 (patch)
tree181fd8c8a31d1ffa8d491c617e5c01a1d2490d49
parent24b65b303fcfdd271b885dd4b7eab6c1a04c894e (diff)
add dvbsub as not text
-rw-r--r--MediaBrowser.Model/Entities/MediaStream.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs
index 7f4cc2f84..1e19a0601 100644
--- a/MediaBrowser.Model/Entities/MediaStream.cs
+++ b/MediaBrowser.Model/Entities/MediaStream.cs
@@ -195,6 +195,7 @@ namespace MediaBrowser.Model.Entities
return StringHelper.IndexOfIgnoreCase(codec, "pgs") == -1 &&
StringHelper.IndexOfIgnoreCase(codec, "dvd") == -1 &&
+ StringHelper.IndexOfIgnoreCase(codec, "dvbsub") == -1 &&
!StringHelper.EqualsIgnoreCase(codec, "sub");
}