Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/08cfc31970a94b37931e275ca9173379eb2cb05f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -50,7 +50,7 @@ namespace PlexRequests.Services
{
ConfigurationReader = new ConfigurationReader ( ) ;
var repo = new SettingsJsonRepository ( new DbConfiguration ( new SqliteFactory ( ) ) , new MemoryCacheProvider ( ) ) ;
Checker = new PlexAvailabilityChecker ( new SettingsServiceV2 < PlexSettings > ( repo ) , new SettingsServiceV2 < AuthenticationSettings > ( repo ) , new RequestService( new GenericRepository < RequestedModel > ( new DbConfiguration ( new SqliteFactory ( ) ) ) ) , new PlexApi ( ) ) ;
Checker = new PlexAvailabilityChecker ( new SettingsServiceV2 < PlexSettings > ( repo ) , new SettingsServiceV2 < AuthenticationSettings > ( repo ) , new JsonRequestService( new RequestJsonRepository ( new DbConfiguration ( new SqliteFactory ( ) ) , new MemoryCacheProvider ( ) ) ) , new PlexApi ( ) ) ;
HostingEnvironment . RegisterObject ( this ) ;
}
@ -82,4 +82,4 @@ namespace PlexRequests.Services
{
void Start ( Configuration c ) ;
}
}
}