Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/cc40b7d2f309f17bbbf69098ae06002cf69daacb
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq ;
using Ninject ;
using NLog ;
using NzbDrone.Core.Helpers ;
using NzbDrone.Core.Model.Notification ;
using NzbDrone.Core.Repository ;
@ -40,7 +41,7 @@ namespace NzbDrone.Core.Providers.Jobs
IList < Series > seriesToScan ;
if ( targetId = = 0 )
{
seriesToScan = _seriesProvider . GetAllSeries ( ) . ToList( ) ;
seriesToScan = _seriesProvider . GetAllSeries ( ) . OrderBy( o = > SortHelper . SkipArticles ( o . Title ) ) . ToList( ) ;
}
else
{
@ -1,6 +1,7 @@
using System.Collections.Generic ;
using System.Linq ;
using Ninject ;
using NzbDrone.Core.Helpers ;
using NzbDrone.Core.Model.Notification ;
using NzbDrone.Core.Repository ;
@ -38,7 +39,7 @@ namespace NzbDrone.Core.Providers.Jobs
IList < Series > seriesToUpdate ;
if ( targetId = = 0 )
{
seriesToUpdate = _seriesProvider . GetAllSeries ( ) . ToList( ) ;
seriesToUpdate = _seriesProvider . GetAllSeries ( ) . OrderBy( o = > SortHelper . SkipArticles ( o . Title ) ) . ToList( ) ;
}
else
{