diff --git a/federation/entities/activitypub/models.py b/federation/entities/activitypub/models.py index 711b979..cd32fcd 100644 --- a/federation/entities/activitypub/models.py +++ b/federation/entities/activitypub/models.py @@ -816,7 +816,7 @@ class Note(Object, RawContentMixin): mentions.sort() for mention in mentions: if validate_handle(mention): - profile = get_profile(finger=mention) + profile = get_profile(finger__iexact=mention) # only add AP profiles mentions if getattr(profile, 'id', None): self.tag_objects.append(Mention(href=profile.id, name='@'+mention))