Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/4c79871bd7d6b1367b7289a63dee4bd1f3beae83
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
18 additions and
3 deletions
@ -81,7 +81,10 @@ namespace Ombi.Services.Jobs
public void CheckAndUpdateAll ( )
{
var embySettings = Emby . GetSettings ( ) ;
if ( ! embySettings . Enable )
{
return ;
}
if ( ! ValidateSettings ( embySettings ) )
{
Log . Debug ( "Validation of the Emby settings failed." ) ;
@ -69,7 +69,10 @@ namespace Ombi.Services.Jobs
public void CacheContent ( )
{
var embySettings = Emby . GetSettings ( ) ;
if ( ! embySettings . Enable )
{
return ;
}
if ( ! ValidateSettings ( embySettings ) )
{
Log . Debug ( "Validation of emby settings failed." ) ;
@ -82,6 +82,11 @@ namespace Ombi.Services.Jobs
var plexSettings = Plex . GetSettings ( ) ;
if ( ! plexSettings . Enable )
{
return ;
}
if ( ! ValidateSettings ( plexSettings ) )
{
Log . Debug ( "Validation of the plex settings failed." ) ;
@ -77,7 +77,10 @@ namespace Ombi.Services.Jobs
public void CacheContent ( )
{
var plexSettings = Plex . GetSettings ( ) ;
if ( ! plexSettings . Enable )
{
return ;
}
if ( ! ValidateSettings ( plexSettings ) )
{
Log . Debug ( "Validation of the plex settings failed." ) ;
@ -171,6 +171,7 @@ namespace Ombi.Services.Notification
try
{
var settings = await PlexSettings . GetSettingsAsync ( ) ;
var plexUser = PlexApi . GetUsers ( settings . PlexAuthToken ) ; // TODO emby
var userAccount = PlexApi . GetAccount ( settings . PlexAuthToken ) ;
var localUsers = UserHelper . GetUsers ( ) . ToList ( ) ;