1
0
Fork 0

Fix AP audience

This commit is contained in:
Chocobozzz 2021-12-13 17:33:59 +01:00
parent 97f026c7f0
commit ab18fadfd1
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ function buildCreateActivity (url: string, byActor: MActorLight, object: any, au
type: 'Create' as 'Create',
id: url + '/activity',
actor: byActor.url,
object
object: audiencify(object, audience)
},
audience
)

View File

@ -134,7 +134,7 @@ function buildUpdateActivity (url: string, byActor: MActorLight, object: any, au
type: 'Update' as 'Update',
id: url,
actor: byActor.url,
object
object: audiencify(object, audience)
},
audience
)