This commit is contained in:
les
2021-03-18 16:30:56 +01:00
parent b925938397
commit 0fd45e2f22

View File

@@ -34,6 +34,7 @@ const Helpers = {
}, },
async signAndSend (message, inbox) { async signAndSend (message, inbox) {
log.debug('sign and send', inbox)
// get the URI of the actor object and append 'inbox' to it // get the URI of the actor object and append 'inbox' to it
const inboxUrl = new url.URL(inbox) const inboxUrl = new url.URL(inbox)
const privkey = settingsController.secretSettings.privateKey const privkey = settingsController.secretSettings.privateKey
@@ -95,7 +96,7 @@ const Helpers = {
{ {
Hashtag: 'as:Hashtag' Hashtag: 'as:Hashtag'
}] }]
Helpers.signAndSend(body, sharedInbox) await Helpers.signAndSend(body, sharedInbox)
} }
}, },