Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/4cbf5cfc57fcdddd686a779b35b06888b3baa70a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
3 deletions
@ -25,6 +25,11 @@ namespace NzbDrone.Core.Download.Aggregation
public RemoteMovie Augment ( RemoteMovie remoteMovie )
{
if ( remoteMovie = = null )
{
return null ;
}
foreach ( var augmenter in _augmenters )
{
try
@ -30,19 +30,21 @@ namespace NzbDrone.Core.Movies
private void HandleScanEvents ( Movie movie )
{
if ( movie . AddOptions = = null )
var addOptions = movie . AddOptions ;
if ( addOptions = = null )
{
return ;
}
_logger . Info ( "[{0}] was recently added, performing post-add actions" , movie . Title ) ;
if ( movie. A ddOptions. SearchForMovie )
if ( a ddOptions. SearchForMovie )
{
_commandQueueManager . Push ( new MoviesSearchCommand { MovieIds = new List < int > { movie . Id } } ) ;
}
if ( movie. A ddOptions. Monitor = = MonitorTypes . MovieAndCollection & & movie . MovieMetadata . Value . CollectionTmdbId > 0 )
if ( a ddOptions. Monitor = = MonitorTypes . MovieAndCollection & & movie . MovieMetadata . Value . CollectionTmdbId > 0 )
{
var collection = _collectionService . FindByTmdbId ( movie . MovieMetadata . Value . CollectionTmdbId ) ;
collection . Monitored = true ;