Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/8fa43fb9f74a98f42c38a94c455190cc786c1334
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
15 additions and
0 deletions
@ -0,0 +1,14 @@
using FluentMigrator ;
using NzbDrone.Core.Datastore.Migration.Framework ;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(107)]
public class fix_movie_files : NzbDroneMigrationBase
{
protected override void MainDbUpgrade ( )
{
Alter . Table ( "MovieFiles" ) . AlterColumn ( "Path" ) . AsString ( ) . Nullable ( ) ; //Should be deleted, but to much work, ¯\_(ツ)_/¯
}
}
}
@ -183,6 +183,7 @@
<Compile Include= "Datastore\Migration\002_remove_tvrage_imdb_unique_constraint.cs" />
<Compile Include= "Datastore\Migration\003_remove_clean_title_from_scene_mapping.cs" />
<Compile Include= "Datastore\Migration\004_updated_history.cs" />
<Compile Include= "Datastore\Migration\107_fix_movie_files.cs" />
<Compile Include= "Datastore\Migration\106_add_tmdb_stuff.cs" />
<Compile Include= "Datastore\Migration\105_fix_history_movieId.cs" />
<Compile Include= "Datastore\Migration\005_added_eventtype_to_history.cs" />