diff --git a/app/boxes.py b/app/boxes.py index f40eb65..6a941d6 100644 --- a/app/boxes.py +++ b/app/boxes.py @@ -473,11 +473,15 @@ async def _send_create( if ap.VisibilityEnum.PUBLIC == outbox_object.visibility: ldsig.generate_signature(ap_object, k) - for r in recipients: - await post( - r, - ap_object, - ) + try: + for r in recipients: + await post( + r, + ap_object, + ) + except Exception as e: + logger.error(e) + return True