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

Fixed bad migration for DownloadClientDirectory

pull/20/merge
Mark McDowall 13 years ago
parent 215c946a67
commit 9538559f61

@ -11,7 +11,7 @@ namespace NzbDrone.Core.Datastore.Migrations
protected override void MainDbUpgrade()
{
Database.ExecuteNonQuery("UPDATE Config SET [KEY] = 'SabBacklogTvPriority' WHERE [KEY] = 'SabTvPriority'");
Database.ExecuteNonQuery("UPDATE Config SET [KEY] = 'SabTvDropDirectory ' WHERE [KEY] = 'DownloadClientTvDirectory'");
Database.ExecuteNonQuery("UPDATE Config SET [KEY] = 'DownloadClientTvDirectory' WHERE [KEY] = 'SabTvDropDirectory'");
var priority = Database.ExecuteScalar("SELECT [Value] FROM Config WHERE [Key] = 'SabBacklogTvPriority'");

Loading…
Cancel
Save