Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/828a9b7c75bbe79c8591c785745851e824589d11
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -176,12 +176,12 @@ namespace Emby.Dlna.PlayTo
if ( state ! = null )
{
var sendValue = state . AllowedValues . FirstOrDefault ( a = > string . Equals ( a , commandParameter , StringComparison . OrdinalIgnoreCase ) ) ? ?
( state . AllowedValues . Count > 0 ? state . AllowedValues [ 0 ] : SecurityElement . Escape ( value ) ) ;
( state . AllowedValues . Count > 0 ? state . AllowedValues [ 0 ] : value ) ;
return string . Format ( CultureInfo . InvariantCulture , "<{0} xmlns:dt=\"urn:schemas-microsoft-com:datatypes\" dt:dt=\"{1}\">{2}</{0}>" , argument . Name , state . DataType ? ? "string" , sendValue ) ;
}
return string . Format ( CultureInfo . InvariantCulture , "<{0}>{1}</{0}>" , argument . Name , SecurityElement . Escape ( value ) ) ;
return string . Format ( CultureInfo . InvariantCulture , "<{0}>{1}</{0}>" , argument . Name , value ) ;
}
}
}