Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/6c1d16ae57622c7479645a0b35247cf834f46c19
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
9 additions and
4 deletions
@ -63,6 +63,12 @@ namespace NzbDrone.Core.Test.MediaFileTests
Subject . GetFileByPath ( @"C:\Test\EpisodeFile.avi" ) . Should ( ) . BeNull ( ) ;
}
[Test]
public void exists_should_return_false_if_file_doesnt_exist ( )
{
Subject . Exists ( @"C:\Test\EpisodeFile.avi" ) . Should ( ) . BeFalse ( ) ;
}
[Test]
public void GetFileByPath_should_return_EpisodeFile_if_file_exists_in_database ( )
{
@ -106,7 +106,7 @@ namespace NzbDrone.Core.Datastore
{
if ( model . Id ! = 0 )
{
throw new InvalidOperationException ( "Can't insert model with existing ID ") ;
throw new InvalidOperationException ( "Can't insert model with existing ID " + model . Id ) ;
}
DataMapper . Insert ( model ) ;
@ -100,7 +100,7 @@ namespace NzbDrone.Core.Parser
//TODO: this will fail since parsed date will be local, and stored date will be UTC
//which means they will prob ebly end up on diff rent dates
//which means they will prob ably end up on diffe rent dates
var episodeInfo = _episodeService . GetEpisode ( series . Id , parsedEpisodeInfo . AirDate . Value ) ;
if ( episodeInfo ! = null )
@ -2,7 +2,6 @@
using Marr.Data ;
using NzbDrone.Core.Datastore ;
using NzbDrone.Core.MediaFiles ;
using NzbDrone.Core.Model ;
namespace NzbDrone.Core.Tv
@ -132,7 +132,7 @@ namespace NzbDrone.Core.Tv
episodeToUpdate . SeasonNumber ! = episode . SeasonNumber ) & &
episodeToUpdate . EpisodeFileId > 0 )
{
_logger . Info( "Un linking episode file because the episode number has changed") ;
_logger . Debug( "Un- linking episode file because the episode number has changed") ;
episodeToUpdate . EpisodeFileId = 0 ;
}