Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7f0fa74467d5f3560addd6cfefbfb2dbd24f4060?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -216,10 +216,10 @@ namespace Emby.Server.Implementations.Library
public static bool IsValidUsername ( string username )
public static bool IsValidUsername ( string username )
{
{
// This is some regex that matches only on unicode "word" characters, as well as -, _ and @
// This is some regex that matches only on unicode "word" characters, as well as -, _ and @
// In theory this will cut out most if not all 'control' characters which should help minimize any weirdness
// In theory this will cut out most if not all 'control' characters which should help minimize any weirdness
// Usernames can contain letters (a-z + whatever else unicode is cool with), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)
// Usernames can contain letters (a-z + whatever else unicode is cool with), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)
return Regex . IsMatch ( username , "^[\\ w-'._@]*$") ;
return Regex . IsMatch ( username , @ "^[\w\ -'._@]*$") ;
}
}
private static bool IsValidUsernameCharacter ( char i )
private static bool IsValidUsernameCharacter ( char i )