mirror of https://github.com/usbharu/Hideout.git
fix: LikeのUndoのidが間違っていたのを修正
This commit is contained in:
parent
adc477998b
commit
3ad36109e0
|
@ -47,6 +47,7 @@ class ApReactionJobServiceImpl(
|
|||
val inbox = props[DeliverRemoveReactionJob.inbox]
|
||||
val actor = props[DeliverRemoveReactionJob.actor]
|
||||
val like = objectMapper.readValue<Like>(props[DeliverRemoveReactionJob.like])
|
||||
val id = props[DeliverRemoveReactionJob.id]
|
||||
|
||||
val signer = userQueryService.findByUrl(actor)
|
||||
|
||||
|
@ -56,7 +57,7 @@ class ApReactionJobServiceImpl(
|
|||
name = "Undo Reaction",
|
||||
actor = actor,
|
||||
`object` = like,
|
||||
id = "${applicationConfig.url}/undo/note/${like.id}",
|
||||
id = "${applicationConfig.url}/undo/note/$id",
|
||||
published = Instant.now()
|
||||
),
|
||||
signer
|
||||
|
|
Loading…
Reference in New Issue