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:
|
if ap.VisibilityEnum.PUBLIC == outbox_object.visibility:
|
||||||
ldsig.generate_signature(ap_object, k)
|
ldsig.generate_signature(ap_object, k)
|
||||||
|
|
||||||
for r in recipients:
|
try:
|
||||||
await post(
|
for r in recipients:
|
||||||
r,
|
await post(
|
||||||
ap_object,
|
r,
|
||||||
)
|
ap_object,
|
||||||
|
)
|
||||||
|
except Exception as e:
|
||||||
|
logger.error(e)
|
||||||
|
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue