Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/22679d61879090a00845c4f36a6d3f17dfdba09a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
8 deletions
@ -49,7 +49,7 @@ namespace NzbDrone.Core.Test.ImportListTests
Mocker . GetMock < IImportListFactory > ( )
. Setup ( v = > v . Get ( It . IsAny < int > ( ) ) )
. Returns ( new ImportListDefinition { ShouldMonitor = ImportListMonitorType . Specific Album } ) ;
. Returns ( new ImportListDefinition { ShouldMonitor = ImportListMonitorType . Specific Book } ) ;
Mocker . GetMock < IFetchAndParseImportList > ( )
. Setup ( v = > v . Fetch ( ) )
@ -222,8 +222,8 @@ namespace NzbDrone.Core.Test.ImportListTests
}
[TestCase(ImportListMonitorType.None, false)]
[TestCase(ImportListMonitorType.Specific Album , true)]
[TestCase(ImportListMonitorType.EntireA rtist , true)]
[TestCase(ImportListMonitorType.Specific Book , true)]
[TestCase(ImportListMonitorType.EntireA uthor , true)]
public void should_add_if_not_existing_artist ( ImportListMonitorType monitor , bool expectedArtistMonitored )
{
WithAuthorId ( ) ;
@ -236,8 +236,8 @@ namespace NzbDrone.Core.Test.ImportListTests
}
[TestCase(ImportListMonitorType.None, false)]
[TestCase(ImportListMonitorType.Specific Album , true)]
[TestCase(ImportListMonitorType.EntireA rtist , true)]
[TestCase(ImportListMonitorType.Specific Book , true)]
[TestCase(ImportListMonitorType.EntireA uthor , true)]
public void should_add_if_not_existing_album ( ImportListMonitorType monitor , bool expectedAlbumMonitored )
{
WithBookId ( ) ;
@ -19,7 +19,7 @@ namespace NzbDrone.Core.ImportLists
public enum ImportListMonitorType
{
None ,
Specific Album ,
EntireA rtist
Specific Book ,
EntireA uthor
}
}
@ -221,7 +221,7 @@ namespace NzbDrone.Core.ImportLists
} ,
} ;
if ( importList . ShouldMonitor = = ImportListMonitorType . Specific Album )
if ( importList . ShouldMonitor = = ImportListMonitorType . Specific Book )
{
toAdd . Author . Value . AddOptions . BooksToMonitor . Add ( toAdd . ForeignBookId ) ;
}