Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/efbe052b26eb2009bc382194a5d7b64f112fe287
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
21 additions and
0 deletions
@ -0,0 +1,20 @@
using FluentMigrator ;
using NzbDrone.Core.Datastore.Migration.Framework ;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(73)]
public class clear_ratings : NzbDroneMigrationBase
{
protected override void MainDbUpgrade ( )
{
Update . Table ( "Series" )
. Set ( new { Ratings = "{}" } )
. AllRows ( ) ;
Update . Table ( "Episodes" )
. Set ( new { Ratings = "{}" } )
. AllRows ( ) ;
}
}
}
@ -232,6 +232,7 @@
<Compile Include= "Datastore\Migration\069_quality_proper.cs" />
<Compile Include= "Datastore\Migration\071_unknown_quality_in_profile.cs" />
<Compile Include= "Datastore\Migration\072_history_grabid.cs" />
<Compile Include= "Datastore\Migration\073_clear_ratings.cs" />
<Compile Include= "Datastore\Migration\070_delay_profile.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationContext.cs" />
<Compile Include= "Datastore\Migration\Framework\MigrationController.cs" />