Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/7ff1335a2e2a6448fd18872c7f226aa488236ae0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
4 additions and
6 deletions
@ -21,7 +21,6 @@ namespace NzbDrone.Core.Configuration
String DownloadedEpisodesFolder { get ; set ; }
bool UseSeasonFolder { get ; set ; }
string SeasonFolderFormat { get ; set ; }
bool EnableBacklogSearching { get ; set ; }
bool AutoIgnorePreviouslyDownloadedEpisodes { get ; set ; }
int Retention { get ; set ; }
Guid UGuid { get ; }
@ -4,12 +4,13 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Tags("")]
[Migration( 7 )]
[Migration( 8 )]
public class remove_backlog : NzbDroneMigrationBase
{
protected override void MainDbUpgrade ( )
{
SQLiteAlter . DropColumns ( "Series" , new [ ] { "BacklogSetting" } ) ;
SQLiteAlter . DropColumns ( "NamingConfig" , new [ ] { "UseSceneName" } ) ;
}
}
}
@ -213,7 +213,7 @@
<Compile Include= "Datastore\Migration\005_added_eventtype_to_history.cs" />
<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\00 7 _remove_backlog.cs" />
<Compile Include= "Datastore\Migration\00 8 _remove_backlog.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationContext.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationController.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationExtension.cs" />
@ -599,4 +599,4 @@
<Target Name= "AfterBuild" >
</Target>
-->
</Project>
</Project>
@ -39,8 +39,6 @@ namespace NzbDrone.Core.Organizer
public bool ReplaceSpaces { get ; set ; }
//Todo: remove - not used
public string SeasonFolderFormat { get ; set ; }
public bool UseSceneName { get ; set ; }
}
}