Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/f52a74eba6b0073c94be4f8b7b16363baa7f0e73
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -103,20 +103,21 @@ namespace Ombi.Schedule.Jobs.Jellyfin
if ( existingJellyfinUser = = null )
{
if ( ! jellyfinUser . ConnectUserName. HasValue ( ) & & ! jellyfinUser . Name. HasValue ( ) )
if ( ! jellyfinUser . Name. HasValue ( ) )
{
_log . LogInformation ( "Could not create Jellyfin user since the have no username, JellyfinUserId: {0}" , jellyfinUser . Id ) ;
continue ;
}
var isConnectUser = jellyfinUser . ConnectUserName . HasValue ( ) ;
// Create this users
var newUser = new OmbiUser
{
UserName = jellyfinUser . Name ,
UserType = UserType . JellyfinUser ,
ProviderUserId = jellyfinUser . Id ,
MovieRequestLimit = userManagementSettings . MovieRequestLimit ,
EpisodeRequestLimit = userManagementSettings . EpisodeRequestLimit
} ;
_log . LogInformation ( "Creating Jellyfin user {0}" , newUser . UserName ) ;
var result = await _userManager . CreateAsync ( newUser ) ;
if ( ! result . Succeeded )
{