From d5069d98a6f7bc8fe860a7be483398b1c804b748 Mon Sep 17 00:00:00 2001 From: Izalia Mae Date: Mon, 11 Mar 2024 01:52:28 -0400 Subject: [PATCH] fix `TypeError` when a person tries joining --- relay/processors.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/relay/processors.py b/relay/processors.py index 04aa4a5..4d19bf9 100644 --- a/relay/processors.py +++ b/relay/processors.py @@ -97,7 +97,8 @@ async def handle_follow(view: ActorView, conn: Connection) -> None: actor = view.actor.id, followid = view.message.id, accept = False - ) + ), + view.instance ) return