Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/1caced614e35d001f5ed66262ea29c9e8514dcc5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
1136 additions and
1122 deletions
@ -65,10 +65,10 @@ function DownloadClientOptions(props) {
< FormInputGroup
type = { inputTypes . NUMBER }
name = "checkForFinishedDownloadInterval"
min = { 0 }
min = { 1 }
max = { 120 }
unit = "minutes"
helpText = { translate ( ' HelpText') }
helpText = { translate ( ' RefreshMonitoredInterval HelpText') }
onChange = { onInputChange }
{ ... settings . checkForFinishedDownloadInterval }
/ >
@ -116,7 +116,7 @@ function IndexerOptions(props) {
min = { 0 }
max = { 120 }
unit = "minutes"
helpText = { translate ( ' HelpText') }
helpText = { translate ( ' RssSync HelpText') }
helpTextWarning = { translate ( 'RSSSyncIntervalHelpTextWarning' ) }
helpLink = "https://wiki.servarr.com/radarr/faq#how-does-radarr-work"
onChange = { onInputChange }
@ -121,7 +121,7 @@ namespace NzbDrone.Core.Jobs
new ScheduledTask
{
Interval = Math. Max ( _configService . CheckForFinishedDownloadInterval , 1 ) ,
Interval = GetRefreshMonitoredInterval( ) ,
TypeName = typeof ( RefreshMonitoredDownloadsCommand ) . FullName ,
Priority = CommandPriority . High
}
@ -192,6 +192,18 @@ namespace NzbDrone.Core.Jobs
return interval ;
}
private int GetRefreshMonitoredInterval ( )
{
var interval = _configService . CheckForFinishedDownloadInterval ;
if ( interval < 1 )
{
return 1 ;
}
return interval ;
}
private int GetImportListSyncInterval ( )
{
//Enforce 6 hour min on list sync
@ -228,13 +240,14 @@ namespace NzbDrone.Core.Jobs
backup . Interval = GetBackupInterval ( ) ;
var refreshMonitoredDownloads = _scheduledTaskRepository . GetDefinition ( typeof ( RefreshMonitoredDownloadsCommand ) ) ;
refreshMonitoredDownloads . Interval = _configService. CheckForFinishedDownloadInterval ;
refreshMonitoredDownloads . Interval = GetRefreshMonitoredInterval( ) ;
_scheduledTaskRepository . UpdateMany ( new List < ScheduledTask > { rss , importList , refreshMonitoredDownloads , backup } ) ;
_cache . Find ( rss . TypeName ) . Interval = rss . Interval ;
_cache . Find ( importList . TypeName ) . Interval = importList . Interval ;
_cache . Find ( backup . TypeName ) . Interval = backup . Interval ;
_cache . Find ( refreshMonitoredDownloads . TypeName ) . Interval = refreshMonitoredDownloads . Interval ;
}
}
}
File diff suppressed because it is too large
Load Diff