From 47b2a7a9b9cc7a58e7cd2306cc95a6c5e56f65d8 Mon Sep 17 00:00:00 2001 From: defnotken Date: Wed, 29 Oct 2025 18:26:41 -0500 Subject: [PATCH] boolz --- .../LightlessSyncServer/Controllers/UserController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSyncServer/LightlessSyncServer/Controllers/UserController.cs b/LightlessSyncServer/LightlessSyncServer/Controllers/UserController.cs index d73adbb..19917bf 100644 --- a/LightlessSyncServer/LightlessSyncServer/Controllers/UserController.cs +++ b/LightlessSyncServer/LightlessSyncServer/Controllers/UserController.cs @@ -125,7 +125,7 @@ public class UserController : Controller var user = await dbContext.UserProfileData.FirstOrDefaultAsync(f => f.UserUID == request.UID); if (user != null) { - user.ProfileDisabled = true; + user.ProfileDisabled = false; } await dbContext.SaveChangesAsync();