fix: keyIdを修正

This commit is contained in:
2023-03-31 13:35:59 +09:00
parent d72b87a1dd
commit 89a585133a
@@ -45,7 +45,7 @@ class ActivityPubUserService(
val person = webFingerService.fetchUserModel(actor) ?: throw IllegalArgumentException("actor is not found")
val inboxUrl = person.inbox ?: throw IllegalArgumentException("inbox is not found")
httpClient.postAp(
inboxUrl, follow.`object`!!, Accept(
inboxUrl, "${follow.`object`!!}/pubkey", Accept(
name = "Follow",
`object` = follow,
actor = follow.`object`.orEmpty()