Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/9aa805062749209564fcba4a55ddeebfd1e654d9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
//If the parsed size is smaller than minSize we don't want it
if(subject.Release.Size<minSize)
{
varruntimeMessage=subject.Movie.Title;
_logger.Debug("Item: {0}, Size: {1} is smaller than minimum allowed size ({2} bytes for {3}), rejecting.",subject,subject.Release.Size,minSize,runtimeMessage);
returnDecision.Reject("{0} is smaller than minimum allowed {1} (for {2})",subject.Release.Size.SizeSuffix(),minSize.SizeSuffix(),runtimeMessage);
//If the parsed size is greater than maxSize we don't want it
if(subject.Release.Size>maxSize)
{;
_logger.Debug("Item: {0}, Size: {1} is greater than maximum allowed size ({2} for {3}), rejecting.",subject,subject.Release.Size,maxSize,subject.Movie.Title);
returnDecision.Reject("{0} is larger than maximum allowed {1} (for {2})",subject.Release.Size.SizeSuffix(),maxSize.SizeSuffix(),subject.Movie.Title);