Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/a9df506ef251a321ba2d0c5e7343c93fe90d8023?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
@ -1,4 +1,5 @@
using System ;
using Ninject ;
using NLog ;
using NLog.Targets ;
using NLog.Targets.Wrappers ;
@ -11,6 +12,7 @@ namespace NzbDrone.Core.Instrumentation
{
private readonly IDatabase _database ;
[Inject]
public DatabaseTarget ( IDatabase database )
{
_database = database ;
@ -283,7 +283,7 @@ namespace NzbDrone.Core.Providers.Core
if ( dbValue ! = null & & ! String . IsNullOrEmpty ( dbValue . Value ) )
return dbValue . Value ;
Logger . Debug ( "Unable to find config key '{0}' defaultValue:'{1}'" , key , defaultValue ) ;
Logger . Trace ( "Unable to find config key '{0}' defaultValue:'{1}'" , key , defaultValue ) ;
value = defaultValue . ToString ( ) ;
return value ;
@ -306,7 +306,7 @@ namespace NzbDrone.Core.Providers.Core
if ( value = = null )
throw new ArgumentNullException ( "key" ) ;
Logger . Debug ( "Writing Setting to file. Key:'{0}' Value:'{1}'" , key , value ) ;
Logger . Trace ( "Writing Setting to file. Key:'{0}' Value:'{1}'" , key , value ) ;
var dbValue = _database . SingleOrDefault < Config > ( "WHERE [KEY]=@0" , key ) ;