diff options
| author | Bill Thornton <thornbill@users.noreply.github.com> | 2025-04-12 09:12:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-12 07:12:33 -0600 |
| commit | afdde7b2439e7f96da0abb9a0989a62770dfb63b (patch) | |
| tree | 90cc1d3255f13bd3d3175b8a8937fa293fbceb49 /Jellyfin.Api/Controllers/StartupController.cs | |
| parent | 5020c0964028c79f37fd20a21530ead15abf1457 (diff) | |
Remove the hashed password from startup users response (#13904)
Diffstat (limited to 'Jellyfin.Api/Controllers/StartupController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/StartupController.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/StartupController.cs b/Jellyfin.Api/Controllers/StartupController.cs index 2278468d9..09f20558f 100644 --- a/Jellyfin.Api/Controllers/StartupController.cs +++ b/Jellyfin.Api/Controllers/StartupController.cs @@ -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 }; } |
