diff --git a/Iceshrimp.Backend/Controllers/Web/NoteController.cs b/Iceshrimp.Backend/Controllers/Web/NoteController.cs index 09267ce5..bc5e664a 100644 --- a/Iceshrimp.Backend/Controllers/Web/NoteController.cs +++ b/Iceshrimp.Backend/Controllers/Web/NoteController.cs @@ -159,7 +159,7 @@ public class NoteController( throw GracefulException.NotFound("Note not found"); var users = await db.NoteReactions - .Where(p => p.Note == note && p.Reaction == $":{name.Trim(':')}:") + .Where(p => p.Note == note && p.Reaction == name) .Include(p => p.User.UserProfile) .Select(p => p.User) .ToListAsync();