mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-09 18:08:00 +00:00
Merge branch 'feature-update' into 'master'
Handle "Update" event See merge request pleroma/relay!14
This commit is contained in:
commit
2eb17041b1
|
@ -214,7 +214,7 @@ async def handle_relay(actor, data, request):
|
|||
CACHE[object_id] = activity_id
|
||||
|
||||
|
||||
async def handle_delete(actor, data, request):
|
||||
async def handle_forward(actor, data, request):
|
||||
object_id = distill_object_id(data)
|
||||
|
||||
logging.debug('>> Relay %r', data)
|
||||
|
@ -286,9 +286,10 @@ async def handle_undo(actor, data, request):
|
|||
processors = {
|
||||
'Announce': handle_relay,
|
||||
'Create': handle_relay,
|
||||
'Delete': handle_delete,
|
||||
'Delete': handle_forward,
|
||||
'Follow': handle_follow,
|
||||
'Undo': handle_undo
|
||||
'Undo': handle_undo,
|
||||
'Update': handle_forward,
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue