Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/dbc20a3c3150793680562b5bd25d9216fc83956e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
31 additions and
2 deletions
@ -0,0 +1,29 @@
using FluentMigrator ;
using NzbDrone.Core.Datastore.Migration.Framework ;
namespace NzbDrone.Core.Datastore.Migration
{
[Tags("")]
[Migration(20130522)]
public class Migration20130522 : NzbDroneMigrationBase
{
protected override void MainDbUpgrade ( )
{
Execute . Sql ( "DROP TABLE IF EXISTS NotificationDefinitions" ) ;
Rename . Table ( "IndexerDefinitions" )
. To ( "Indexers" ) ;
Create . TableForModel ( "Notifications" )
. WithColumn ( "Name" ) . AsString ( )
. WithColumn ( "OnGrab" ) . AsBoolean ( )
. WithColumn ( "OnDownload" ) . AsBoolean ( )
. WithColumn ( "Settings" ) . AsString ( )
. WithColumn ( "Implementation" ) . AsString ( ) ;
}
protected override void LogDbUpgrade ( )
{
}
}
}
@ -33,9 +33,9 @@ namespace NzbDrone.Core.Datastore
Mapper . Entity < Config > ( ) . RegisterModel ( "Config" ) ;
Mapper . Entity < RootFolder > ( ) . RegisterModel ( "RootFolders" ) . Ignore ( r = > r . FreeSpace ) ;
Mapper . Entity < IndexerDefinition > ( ) . RegisterModel ( "Indexer Definition s") ;
Mapper . Entity < IndexerDefinition > ( ) . RegisterModel ( "Indexer s") ;
Mapper . Entity < ScheduledTask > ( ) . RegisterModel ( "ScheduledTasks" ) ;
Mapper . Entity < NotificationDefinition > ( ) . RegisterModel ( "Notification Definition s") ;
Mapper . Entity < NotificationDefinition > ( ) . RegisterModel ( "Notification s") ;
Mapper . Entity < SceneMapping > ( ) . RegisterModel ( "SceneMappings" ) ;