Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/13f46e3fff0cd387a7ed1fe34168e9fd83ea65ef
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
3 deletions
@ -293,6 +293,7 @@ namespace Jellyfin.Server.Implementations.Users
public UserDto GetUserDto ( User user , string? remoteEndPoint = null )
{
var hasPassword = GetAuthenticationProvider ( user ) . HasPassword ( user ) ;
var castReceiverApplications = _serverConfigurationManager . Configuration . CastReceiverApplications ;
return new UserDto
{
Name = user . Username ,
@ -322,9 +323,9 @@ namespace Jellyfin.Server.Implementations.Users
MyMediaExcludes = user . GetPreferenceValues < Guid > ( PreferenceKind . MyMediaExcludes ) ,
LatestItemsExcludes = user . GetPreferenceValues < Guid > ( PreferenceKind . LatestItemExcludes ) ,
CastReceiverId = string . IsNullOrEmpty ( user . CastReceiverId )
? _serverConfigurationManager. Configuration . C astReceiverApplications. FirstOrDefault ( ) ? . Id
: _serverConfigurationManager. Configuration . C astReceiverApplications. FirstOrDefault ( c = > string . Equals ( c . Id , user . CastReceiverId , StringComparison . Ordinal ) ) ? . Id
? ? _serverConfigurationManager. Configuration . C astReceiverApplications. FirstOrDefault ( ) ? . Id
? c astReceiverApplications. FirstOrDefault ( ) ? . Id
: c astReceiverApplications. FirstOrDefault ( c = > string . Equals ( c . Id , user . CastReceiverId , StringComparison . Ordinal ) ) ? . Id
? ? c astReceiverApplications. FirstOrDefault ( ) ? . Id
} ,
Policy = new UserPolicy
{