Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/6a393ef6a293d9e1044a7c9a1efbb6fadde7a26f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
8 additions and
7 deletions
@ -11,7 +11,7 @@ using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Api.Indexers
{
class ReleasePushModule : ReleaseModuleBase
public class ReleasePushModule : ReleaseModuleBase
{
private readonly IMakeDownloadDecision _downloadDecisionMaker ;
private readonly IProcessDownloadDecisions _downloadDecisionProcessor ;
@ -3,7 +3,7 @@ using Nancy;
namespace NzbDrone.Api.Profiles
{
class LegacyProfileModule : NzbDroneApiModule
public class LegacyProfileModule : NzbDroneApiModule
{
public LegacyProfileModule ( )
: base ( "qualityprofile" )
@ -3,7 +3,7 @@ using Nancy;
namespace NzbDrone.Api.Wanted
{
class LegacyMissingModule : NzbDroneApiModule
public class LegacyMissingModule : NzbDroneApiModule
{
public LegacyMissingModule ( ) : base ( "missing" )
{
@ -23,7 +23,7 @@ namespace NzbDrone.Common.Composition
foreach ( var assembly in assemblies )
{
_loadedTypes . AddRange ( Assembly . Load ( assembly ) . Get Types( ) ) ;
_loadedTypes . AddRange ( Assembly . Load ( assembly ) . Get Exported Types( ) ) ;
}
Container = new Container ( new TinyIoCContainer ( ) , _loadedTypes ) ;
@ -17,7 +17,7 @@ namespace NzbDrone.Common.Reflection
public static List < Type > ImplementationsOf < T > ( this Assembly assembly )
{
return assembly . Get Types( ) . Where ( c = > typeof ( T ) . IsAssignableFrom ( c ) ) . ToList ( ) ;
return assembly . Get Exported Types( ) . Where ( c = > typeof ( T ) . IsAssignableFrom ( c ) ) . ToList ( ) ;
}
public static bool IsSimpleType ( this Type type )
@ -67,7 +67,7 @@ namespace NzbDrone.Common.Reflection
public static Type FindTypeByName ( this Assembly assembly , string name )
{
return assembly . Get Types( ) . SingleOrDefault ( c = > c . Name . Equals ( name , StringComparison . InvariantCultureIgnoreCase ) ) ;
return assembly . Get Exported Types( ) . SingleOrDefault ( c = > c . Name . Equals ( name , StringComparison . InvariantCultureIgnoreCase ) ) ;
}
public static bool HasAttribute < TAttribute > ( this Type type )
@ -40,6 +40,7 @@ namespace NzbDrone.Core.Datastore
Environment . SetEnvironmentVariable ( "No_Expand" , "true" ) ;
Environment . SetEnvironmentVariable ( "No_SQLiteXmlConfigFile" , "true" ) ;
Environment . SetEnvironmentVariable ( "No_PreLoadSQLite" , "true" ) ;
Environment . SetEnvironmentVariable ( "No_SQLiteFunctions" , "true" ) ;
}
public static void RegisterDatabase ( IContainer container )
@ -12,7 +12,7 @@ using NzbDrone.Core.Parser.Model;
namespace Sonarr.Api.V3.Indexers
{
class ReleasePushModule : ReleaseModuleBase
public class ReleasePushModule : ReleaseModuleBase
{
private readonly IMakeDownloadDecision _downloadDecisionMaker ;
private readonly IProcessDownloadDecisions _downloadDecisionProcessor ;