Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/936b2502cc2e30588f104441987f69c71365191c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
11 additions and
20 deletions
@ -6,6 +6,12 @@ import FormGroup from 'Components/Form/FormGroup';
import FormLabel from 'Components/Form/FormLabel' ;
import FormInputGroup from 'Components/Form/FormInputGroup' ;
const logLevelOptions = [
{ key : 'info' , value : 'Info' } ,
{ key : 'debug' , value : 'Debug' } ,
{ key : 'trace' , value : 'Trace' }
] ;
function LoggingSettings ( props ) {
const {
settings ,
@ -16,12 +22,6 @@ function LoggingSettings(props) {
logLevel
} = settings ;
const logLevelOptions = [
{ key : 'info' , value : 'Info' } ,
{ key : 'debug' , value : 'Debug' } ,
{ key : 'trace' , value : 'Trace' }
] ;
return (
< FieldSet legend = "Logging" >
< FormGroup >
@ -26,6 +26,7 @@ function getInternalLink(source) {
/ >
) ;
case 'DownloadClientCheck' :
case 'DownloadClientStatusCheck' :
case 'ImportMechanismCheck' :
case 'RemotePathMappingCheck' :
return (
@ -68,6 +69,7 @@ function getTestLink(source, props) {
/ >
) ;
case 'DownloadClientCheck' :
case 'DownloadClientStatusCheck' :
return (
< SpinnerIconButton
name = { icons . TEST }
@ -27,5 +27,5 @@
. actions {
composes : cell from '~Components/Table/Cells/TableRowCell.css' ;
width : 2 0px;
width : 6 0px;
}
@ -180,7 +180,7 @@ namespace NzbDrone.Core.Configuration
public string Branch = > GetValue ( "Branch" , "develop" ) . ToLowerInvariant ( ) ;
public string LogLevel = > GetValue ( "LogLevel" , " I nfo") ;
public string LogLevel = > GetValue ( "LogLevel" , " i nfo") ;
public string ConsoleLogLevel = > GetValue ( "ConsoleLogLevel" , string . Empty , persist : false ) ;
public bool FilterSentryEvents = > GetValueBoolean ( "FilterSentryEvents" , true , persist : false ) ;
@ -51,18 +51,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
private IEnumerable < DownloadClientItem > GetQueue ( )
{
SabnzbdQueue sabQueue ;
try
{
sabQueue = _proxy . GetQueue ( 0 , 0 , Settings ) ;
}
catch ( DownloadClientException ex )
{
_logger . Warn ( ex , "Couldn't get download queue. {0}" , ex . Message ) ;
return Enumerable . Empty < DownloadClientItem > ( ) ;
}
var sabQueue = _proxy . GetQueue ( 0 , 0 , Settings ) ;
var queueItems = new List < DownloadClientItem > ( ) ;
foreach ( var sabQueueItem in sabQueue . Items )