diff --git a/Iceshrimp.Backend/Controllers/Web/AdminController.cs b/Iceshrimp.Backend/Controllers/Web/AdminController.cs index 3036e6f6..0b8e48a8 100644 --- a/Iceshrimp.Backend/Controllers/Web/AdminController.cs +++ b/Iceshrimp.Backend/Controllers/Web/AdminController.cs @@ -62,7 +62,7 @@ public class AdminController( public async Task ResetPassword(string id, [FromBody] ResetPasswordRequest request) { var settings = await db.UserSettings.FirstOrDefaultAsync(p => p.UserId == id) ?? - throw GracefulException.RecordNotFound(); + throw GracefulException.RecordNotFound(); if (request.Password.Length < 8) throw GracefulException.BadRequest("Password must be at least 8 characters long");