diff --git a/Iceshrimp.Backend/Controllers/Web/UserController.cs b/Iceshrimp.Backend/Controllers/Web/UserController.cs index 82c3c8e3..d1b7632a 100644 --- a/Iceshrimp.Backend/Controllers/Web/UserController.cs +++ b/Iceshrimp.Backend/Controllers/Web/UserController.cs @@ -157,10 +157,6 @@ public class UserController( await db.ReloadEntityRecursivelyAsync(user); - user = await db.Users.IncludeCommonProperties() - .FirstOrDefaultAsync(p => p.Id == id && p.Host != null && p.Uri != null) - ?? throw new Exception("User disappeared during refetch"); - return await userRenderer.RenderOne(user); }