This commit is contained in:
Bryan Ashby 2023-01-12 18:40:43 -07:00
parent fc14b5d299
commit 67652b18f2
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 4 additions and 2 deletions

View File

@ -82,7 +82,6 @@ exports.getModule = class ActivityPubScannerTosser extends MessageScanTossModule
);
},
(activity, fromUser, callback) => {
persistToOutbox(
activity,
fromUser.userId,
@ -128,7 +127,10 @@ exports.getModule = class ActivityPubScannerTosser extends MessageScanTossModule
'Failed to export message to ActivityPub'
);
} else {
this.log.info({id: activity.id}, 'Note Activity exported (published) successfully');
this.log.info(
{ id: activity.id },
'Note Activity exported (published) successfully'
);
}
}
);