Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/6c4b5e44c950a4bd43d883cf4f05564ce88e6f3b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
1 additions and
10 deletions
@ -166,7 +166,6 @@ namespace PlexRequests.UI
private void ConfigureContainer ( IKernel container )
{
var loc = ServiceLocator . Instance ;
loc . SetContainer ( container ) ;
}
@ -26,13 +26,7 @@
# endregion
using System ;
using MediatR ;
using Nancy.TinyIoc ;
using Ninject ;
using Ninject.Extensions.Conventions ;
using Ninject.Modules ;
using Ninject.Planning.Bindings.Resolvers ;
using NLog ;
@ -59,9 +53,7 @@ namespace PlexRequests.UI
kernel . Components . Add < IBindingResolver , ContravariantBindingResolver > ( ) ;
app . UseNancy ( options = > options . Bootstrapper = new Bootstrapper ( kernel ) ) ;
app . UseNancy ( options = > options . Bootstrapper = new Bootstrapper ( kernel ) ) ;
var scheduler = new Scheduler ( ) ;
scheduler . StartScheduler ( ) ;
}