Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/b1e772d8521f9dd84f8013774796fcb5c1bb34c3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
2 deletions
@ -33,7 +33,7 @@ namespace NzbDrone.Core.Test.MediaFileTests
{
var fakeSeries = Builder < Series > . CreateNew ( )
. With ( s = > s . Title = "30 Rock" )
. With ( s = > s . RootFolder = new LazyLoaded < RootFolder > ( new RootFolder { Path = @"C:\Test \TV " } ) )
. With ( s = > s . RootFolder = new LazyLoaded < RootFolder > ( new RootFolder { Path = @"C:\Test " } ) )
. With ( s = > s . FolderName = "30 Rock" )
. With ( s = > s . SeasonFolder = useSeasonFolder )
. Build ( ) ;
@ -53,7 +53,15 @@ namespace NzbDrone.Core.Tv
//Todo: Use this to auto link RootFolder and Folder (using the proper path separator)
public string Path
{
get { return System . IO . Path . Combine ( RootFolder . Value . Path , FolderName ) ; }
get
{
if ( RootFolder = = null | | RootFolder . Value = = null | | String . IsNullOrWhiteSpace ( RootFolder . Value . Path ) )
{
return null ;
}
return System . IO . Path . Combine ( RootFolder . Value . Path , FolderName ) ;
}
}
//Todo: This should be a double since there are timezones that aren't on a full hour offset