This commit is contained in:
parent
980b186c31
commit
7eb4421f74
@ -23,11 +23,11 @@ module.exports = (app, apex, client) => {
|
||||
&& msg.activity.type) {
|
||||
const type = msg.activity.type.toLowerCase()
|
||||
if (type === 'follow' && msg.recipient.type.toLowerCase() === 'person') {
|
||||
// const follow = await apex.acceptFollow(msg.recipient, msg.activity)
|
||||
const act = await apex.buildActivity('Accept', apex.utils.usernameToIRI(constant.nick), ['https://www.w3.org/ns/activitystreams#Public'].concat([msg.actor.id]), {
|
||||
actor: msg.recipient,
|
||||
object: msg.activity
|
||||
})
|
||||
const follow = await apex.acceptFollow(msg.recipient, msg.activity),
|
||||
act = await apex.buildActivity('Accept', apex.utils.usernameToIRI(constant.nick), ['https://www.w3.org/ns/activitystreams#Public'].concat([msg.actor.id]), {
|
||||
actor: msg.recipient,
|
||||
object: msg.activity
|
||||
})
|
||||
await apex.addToOutbox(await apex.store.getObject(apex.utils.usernameToIRI(constant.nick), true), act)
|
||||
}
|
||||
if (type === 'create' && msg.object.type.toLowerCase() === 'note' && msg.actor.preferredUsername && msg.object.content) {
|
||||
|
@ -25,7 +25,7 @@
|
||||
"node-schedule": "^2.1.1",
|
||||
"parcel": "^2.12.0",
|
||||
"rotating-file-stream": "^3.2.5",
|
||||
"stream-json": "^1.8.0",
|
||||
"stream-json": "^1.9.0",
|
||||
"swagger-jsdoc": "^6.2.8",
|
||||
"swagger-ui-express": "^5.0.1"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user