fixes #1356 - [BUG] .mkv that stream copies, cannot be played without transcoding option turned on for user

This commit is contained in:
Luke Pulverenti
2016-05-14 23:52:39 -04:00
parent ff980dc42c
commit 2fffbc2db0
2 changed files with 15 additions and 7 deletions

View File

@@ -175,13 +175,6 @@ namespace MediaBrowser.Server.Implementations.Library
source.SupportsTranscoding = false;
}
}
else if (string.Equals(item.MediaType, MediaType.Video, StringComparison.OrdinalIgnoreCase))
{
if (!user.Policy.EnableVideoPlaybackTranscoding)
{
source.SupportsTranscoding = false;
}
}
}
}