Remove the hashed password from startup users response (#13904)

This commit is contained in:
Bill Thornton 2025-04-12 09:12:33 -04:00 committed by GitHub
parent 5020c09640
commit afdde7b243
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 5 deletions

View file

@ -114,8 +114,7 @@ public class StartupController : BaseJellyfinApiController
var user = _userManager.Users.First();
return new StartupUserDto
{
Name = user.Username,
Password = user.Password
Name = user.Username
};
}