Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/ce0a6f8b86b56436adb2cc64c585a3e7eccfef0f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
7 additions and
4 deletions
@ -4,12 +4,12 @@ using Migrator.Framework;
namespace NzbDrone.Core.Datastore.Migrations
{
[Migration(201204 14 )]
public class Migration201204 14 : NzbDroneMigration
[Migration(201204 30 )]
public class Migration201204 30 : NzbDroneMigration
{
protected override void MainDbUpgrade ( )
{
Database . AddColumn ( "History" , " Url", DbType . String , ColumnProperty . Null ) ;
Database . AddColumn ( "History" , " NzbInfo Url", DbType . String , ColumnProperty . Null ) ;
}
}
}
@ -30,6 +30,8 @@ namespace NzbDrone.Core.Model
public string NzbUrl { get ; set ; }
public string NzbInfoUrl { get ; set ; }
public string OriginalString { get ; set ; }
public Series Series { get ; set ; }
@ -52,7 +52,6 @@ namespace NzbDrone.Core.Providers
{
logger . Trace ( "Download added to Queue: {0}" , downloadTitle ) ;
foreach ( var episode in _episodeProvider . GetEpisodesByParseResult ( parseResult ) )
{
var history = new History ( ) ;
@ -63,6 +62,7 @@ namespace NzbDrone.Core.Providers
history . NzbTitle = parseResult . OriginalString ;
history . EpisodeId = episode . EpisodeId ;
history . SeriesId = episode . SeriesId ;
history . NzbInfoUrl = parseResult . NzbInfoUrl ;
_historyProvider . Add ( history ) ;
_episodeProvider . MarkEpisodeAsFetched ( episode . EpisodeId ) ;
@ -16,6 +16,7 @@ namespace NzbDrone.Core.Repository
public DateTime Date { get ; set ; }
public bool IsProper { get ; set ; }
public string Indexer { get ; set ; }
public string NzbInfoUrl { get ; set ; }
[ResultColumn]
public Episode Episode { get ; set ; }