diff --git a/Iceshrimp.Backend/Controllers/Web/UserController.cs b/Iceshrimp.Backend/Controllers/Web/UserController.cs index 2fc20ef0..82c3c8e3 100644 --- a/Iceshrimp.Backend/Controllers/Web/UserController.cs +++ b/Iceshrimp.Backend/Controllers/Web/UserController.cs @@ -155,7 +155,7 @@ public class UserController( await userSvc.UpdateUserAsync(user, force: true); - db.ChangeTracker.Clear(); + await db.ReloadEntityRecursivelyAsync(user); user = await db.Users.IncludeCommonProperties() .FirstOrDefaultAsync(p => p.Id == id && p.Host != null && p.Uri != null)