From 48bf66033839df8af7de50ca2d4bf7da6f02e875 Mon Sep 17 00:00:00 2001 From: southfox Date: Fri, 7 Apr 2023 11:21:25 +0800 Subject: [PATCH] [fix] not link element outbox.actor -> inbox --- app/boxes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/boxes.py b/app/boxes.py index 08245be..af20c50 100644 --- a/app/boxes.py +++ b/app/boxes.py @@ -48,7 +48,7 @@ async def get_outbox_object( .where(OutboxObject.ap_id == ap_id) .options( joinedload(OutboxObject.relates_to_inbox_object).options( - joinedload(OutboxObject.relates_to_actor), + joinedload(InboxObject.actor), ), ) )