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

random template is create only in ncrunch.

pull/4/head
kay.one 12 years ago
parent 32e402b5a0
commit 460b90bc95

@ -16,7 +16,14 @@ namespace NzbDrone.Core.Test.Framework
[SetUp]
public void CoreTestSetup()
{
_dbTemplateName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName()) + ".sdf";
if(NCrunch.Framework.NCrunchEnvironment.NCrunchIsResident())
{
_dbTemplateName = Path.Combine(Path.GetTempPath(), Path.GetTempFileName()) + ".sdf";
}
else
{
_dbTemplateName = "db_template.sdf";
}
CreateDataBaseTemplate();
}

Loading…
Cancel
Save