diff options
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs b/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs index 2105f1a47..6bc1af591 100644 --- a/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs +++ b/MediaBrowser.Server.Implementations/Library/MediaSourceManager.cs @@ -68,23 +68,12 @@ namespace MediaBrowser.Server.Implementations.Library if (stream.IsTextSubtitleStream) { - return InternalTextStreamSupportsExternalStream(stream); + return true; } return false; } - private bool InternalTextStreamSupportsExternalStream(MediaStream stream) - { - // These usually have styles and fonts that won't convert to text very well - if (string.Equals(stream.Codec, "ass", StringComparison.OrdinalIgnoreCase)) - { - return false; - } - - return true; - } - public IEnumerable<MediaStream> GetMediaStreams(string mediaSourceId) { var list = GetMediaStreams(new MediaStreamQuery |
