Fix admin outbox query

This commit is contained in:
Thomas Sileo 2022-07-07 08:55:53 +02:00
parent d058c1ba26
commit 952b28ece7

View file

@ -454,6 +454,7 @@ async def get_outbox_object_by_ap_id(
db_session: AsyncSession, ap_id: str db_session: AsyncSession, ap_id: str
) -> models.OutboxObject | None: ) -> models.OutboxObject | None:
return ( return (
(
await db_session.execute( await db_session.execute(
select(models.OutboxObject) select(models.OutboxObject)
.where(models.OutboxObject.ap_id == ap_id) .where(models.OutboxObject.ap_id == ap_id)
@ -465,13 +466,16 @@ async def get_outbox_object_by_ap_id(
joinedload(models.InboxObject.actor), joinedload(models.InboxObject.actor),
), ),
joinedload(models.OutboxObject.relates_to_outbox_object).options( joinedload(models.OutboxObject.relates_to_outbox_object).options(
joinedload(models.OutboxObject.outbox_object_attachments).options( joinedload(
joinedload(models.OutboxObjectAttachment.upload) models.OutboxObject.outbox_object_attachments
), ).options(joinedload(models.OutboxObjectAttachment.upload)),
), ),
) )
) )
).scalar_one_or_none() # type: ignore )
.unique()
.scalar_one_or_none()
) # type: ignore
async def get_anybox_object_by_ap_id( async def get_anybox_object_by_ap_id(