Delete a "Block" event when recieved in INBOX
This commit is contained in:
parent
56f46070fe
commit
27ac14da3d
|
@ -10,6 +10,14 @@ module.exports = {
|
|||
}
|
||||
return true;
|
||||
}
|
||||
if (msg.activity.type === 'Undo')
|
||||
{
|
||||
if (msg.object.type === 'Block') {
|
||||
await db.table.objects().deleteOne(
|
||||
{ id: msg.object.id, type: 'Block' })
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
console.log('INBOX')
|
||||
console.log(msg)
|
||||
|
|
Loading…
Reference in New Issue