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

Fixed: Don't fail on frameworks 4.7 and up

Co-Authored-By: taloth <taloth@users.noreply.github.com>
pull/6/head
Qstick 6 years ago
parent f1fc45fa99
commit edba53181f

@ -13,7 +13,7 @@ namespace NzbDrone.Windows.Test.EnvironmentInfo
public void should_get_framework_version()
{
Subject.Version.Major.Should().Be(4);
Subject.Version.Minor.Should().BeOneOf(0, 5, 6);
Subject.Version.Minor.Should().BeOneOf(0, 5, 6, 7, 8);
}
}
}

Loading…
Cancel
Save