Merge pull request #1909 from KerryRJ/FixDvdsFailingToPlay

Fix System.NullReferenceException when playing Dvds copied to HDD

(cherry picked from commit fdb0c3a1dff0c1e9c3c22a3be688b97ea0bd7a6d)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
This commit is contained in:
Bond-009 2019-10-20 17:10:43 +02:00 committed by Joshua Boniface
parent 0212c0b85f
commit 86a50367b2

View File

@ -1173,7 +1173,6 @@ namespace MediaBrowser.Controller.MediaEncoding
{
bitrate = GetMinBitrate(videoStream.BitRate.Value, bitrate.Value);
}
}
if (bitrate.HasValue)
{
@ -1186,6 +1185,7 @@ namespace MediaBrowser.Controller.MediaEncoding
bitrate = Math.Min(bitrate.Value, request.VideoBitRate.Value);
}
}
}
return bitrate;
}