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
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
};
}