Fixed channels not displaying on user profile

This commit is contained in:
Agate 2020-07-28 09:41:43 +02:00
commit 308e38b4db
2 changed files with 16 additions and 1 deletions

View file

@ -227,7 +227,7 @@ class ActorScopeFilter(filters.CharFilter):
username, domain = full_username.split("@")
try:
actor = federation_models.Actor.objects.get(
preferred_username=username, domain_id=domain,
preferred_username__iexact=username, domain_id=domain,
)
except federation_models.Actor.DoesNotExist:
raise EmptyQuerySet()