diff --git a/posthog/asgi.py b/posthog/asgi.py index f048520a2e6fc..38b9b00ec5c51 100644 --- a/posthog/asgi.py +++ b/posthog/asgi.py @@ -15,6 +15,7 @@ async def inner(scope, receive, send): if scope["type"] != "http": return HttpResponse(status=501) return await func(scope, receive, send) + return inner