Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/c719b17ac04aab73da45e3913830eabdcd989ca3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
20 additions and
4 deletions
@ -0,0 +1,18 @@
using FluentMigrator ;
using NzbDrone.Core.Datastore.Migration.Framework ;
namespace NzbDrone.Core.Datastore.Migration
{
[Tags("")]
[Migration(9)]
public class fix_rename_episodes : NzbDroneMigrationBase
{
protected override void MainDbUpgrade ( )
{
SQLiteAlter . DropColumns ( "NamingConfig" , new [ ] { "SeasonFolderFormat" } ) ;
Execute . Sql ( "UPDATE NamingConfig SET RenameEpisodes = 1 WHERE RenameEpisodes = -1" ) ;
Execute . Sql ( "UPDATE NamingConfig SET RenameEpisodes = 0 WHERE RenameEpisodes = -2" ) ;
}
}
}
@ -214,6 +214,7 @@
<Compile Include= "Datastore\Migration\006_add_index_to_log_time.cs" />
<Compile Include= "Datastore\Migration\007_add_renameEpisodes_to_naming.cs" />
<Compile Include= "Datastore\Migration\008_remove_backlog.cs" />
<Compile Include= "Datastore\Migration\009_fix_renameEpisodes.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationContext.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationController.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationExtension.cs" />
@ -17,8 +17,7 @@ namespace NzbDrone.Core.Organizer
MultiEpisodeStyle = 0 ,
IncludeEpisodeTitle = true ,
IncludeQuality = true ,
ReplaceSpaces = false ,
SeasonFolderFormat = "DO_NOT_USE"
ReplaceSpaces = false
} ;
}
}
@ -38,7 +37,5 @@ namespace NzbDrone.Core.Organizer
public int MultiEpisodeStyle { get ; set ; }
public bool ReplaceSpaces { get ; set ; }
public string SeasonFolderFormat { get ; set ; }
}
}