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

Fixed: Move migration dispose after try

pull/928/head
Qstick 6 years ago
parent db321a5d1e
commit ca6ff0d067

@ -50,8 +50,6 @@ namespace NzbDrone.Core.Datastore.Migration.Framework
{
runner.MigrateUp(true);
}
processor.Dispose();
}
catch (SQLiteException)
{
@ -60,6 +58,8 @@ namespace NzbDrone.Core.Datastore.Migration.Framework
throw;
}
processor.Dispose();
sw.Stop();
_announcer.ElapsedTime(sw.Elapsed);

Loading…
Cancel
Save