[fix] not link element outbox.actor -> inbox

This commit is contained in:
SouthFox 2023-04-07 11:21:25 +08:00
parent 789cd3f44c
commit 48bf660338

View file

@ -48,7 +48,7 @@ async def get_outbox_object(
.where(OutboxObject.ap_id == ap_id) .where(OutboxObject.ap_id == ap_id)
.options( .options(
joinedload(OutboxObject.relates_to_inbox_object).options( joinedload(OutboxObject.relates_to_inbox_object).options(
joinedload(OutboxObject.relates_to_actor), joinedload(InboxObject.actor),
), ),
) )
) )