This commit is contained in:
parent
c97581278d
commit
f6b6e8c278
1 changed files with 9 additions and 5 deletions
14
app/boxes.py
14
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue