Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/75270d81510512d325953b745839ba78fd436d5c You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Avoid ArgumentRangeException on FFProbe check when no sidedata frames

Fixes RADARR-1G5Q
pull/6803/head
Qstick 3 years ago
parent 7a859f340b
commit 75270d8151

@ -113,7 +113,7 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
}
var streamSideData = analysis.PrimaryVideoStream?.SideDataList ?? new ();
var framesSideData = frames?.Frames[0]?.SideDataList ?? new ();
var framesSideData = frames?.Frames?.Count > 0 ? frames?.Frames[0]?.SideDataList ?? new () : new ();
var sideData = streamSideData.Concat(framesSideData).ToList();
mediaInfoModel.VideoHdrFormat = GetHdrFormat(mediaInfoModel.VideoBitDepth, mediaInfoModel.VideoColourPrimaries, mediaInfoModel.VideoTransferCharacteristics, sideData);

Loading…
Cancel
Save