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

Fix QualityModelComparer test when respecting group order

pull/2935/head
Mark McDowall 6 years ago
parent 00ca91399a
commit 8ea24a6b09

@ -31,8 +31,8 @@ namespace NzbDrone.Core.Qualities
public int Compare(Quality left, Quality right, bool respectGroupOrder)
{
var leftIndex = _profile.GetIndex(left);
var rightIndex = _profile.GetIndex(right);
var leftIndex = _profile.GetIndex(left, respectGroupOrder);
var rightIndex = _profile.GetIndex(right, respectGroupOrder);
return leftIndex.CompareTo(rightIndex, respectGroupOrder);
}

Loading…
Cancel
Save