Apply review suggestions

This commit is contained in:
Shadowghost 2022-12-04 12:09:10 +01:00
parent 697efec86e
commit 1cd7da8889
1 changed files with 7 additions and 0 deletions

View File

@ -1477,6 +1477,13 @@ namespace MediaBrowser.Model.Dlna
private bool IsBitrateLimitExceeded(MediaSourceInfo item, long maxBitrate) private bool IsBitrateLimitExceeded(MediaSourceInfo item, long maxBitrate)
{ {
// Don't restrict by bitrate if coming from an external domain
if (item.IsRemote)
{
return false;
}
long requestedMaxBitrate = maxBitrate > 0 ? maxBitrate : 1000000; long requestedMaxBitrate = maxBitrate > 0 ? maxBitrate : 1000000;
// If we don't know the bitrate, then force a transcode if requested max bitrate is under 40 mbps // If we don't know the bitrate, then force a transcode if requested max bitrate is under 40 mbps