Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/23bd9440b3a2b8c9d0bdeb83cd1cd0d41143f637
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
0 additions and
21 deletions
@ -1,21 +0,0 @@
using FluentMigrator ;
using NzbDrone.Core.Datastore.Migration.Framework ;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(87)]
public class add_on_rename_to_notifcations : NzbDroneMigrationBase
{
protected override void MainDbUpgrade ( )
{
Alter . Table ( "Notifications" ) . AddColumn ( "OnRename" ) . AsBoolean ( ) . Nullable ( ) ;
Execute . Sql ( "UPDATE Notifications SET OnRename = OnDownload WHERE Implementation IN ('PlexServer', 'Xbmc', 'MediaBrowser')" ) ;
Execute . Sql ( "UPDATE Notifications SET OnRename = 0 WHERE Implementation NOT IN ('PlexServer', 'Xbmc', 'MediaBrowser')" ) ;
Alter . Table ( "Notifications" ) . AlterColumn ( "OnRename" ) . AsBoolean ( ) . NotNullable ( ) ;
Execute . Sql ( "UPDATE Notifications SET OnGrab = 0 WHERE Implementation = 'PlexServer'" ) ;
}
}
}