Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/26dd67a441d251bef56c14d8058e7068e38e06af
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
10 deletions
@ -1379,20 +1379,16 @@ namespace Emby.Server.Implementations.Session
user = _userManager . GetUserByName ( request . Username ) ;
}
if ( user ! = null )
if ( user = = null )
{
// TODO: Move this to userManager?
if ( ! string . IsNullOrEmpty ( request . DeviceId )
& & ! _deviceManager . CanAccessDevice ( user , request . DeviceId ) )
{
throw new SecurityException ( "User is not allowed access from this device." ) ;
}
AuthenticationFailed ? . Invoke ( this , new GenericEventArgs < AuthenticationRequest > ( request ) ) ;
throw new SecurityException ( "Invalid username or password entered." ) ;
}
if ( user = = null )
if ( ! string . IsNullOrEmpty ( request . DeviceId )
& & ! _deviceManager . CanAccessDevice ( user , request . DeviceId ) )
{
AuthenticationFailed ? . Invoke ( this , new GenericEventArgs < AuthenticationRequest > ( request ) ) ;
throw new SecurityException ( "Invalid user or password entered." ) ;
throw new SecurityException ( "User is not allowed access from this device." ) ;
}
if ( enforcePassword )