fix: FollowのUndoの処理に成功しているのに未実装エラーが出るのを修正

This commit is contained in:
usbharu 2023-10-31 16:26:46 +09:00
parent 496206a7ad
commit dbfc4ed1a7
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ class APUndoServiceImpl(
val target = userQueryService.findByUrl(follow.`object`!!) val target = userQueryService.findByUrl(follow.`object`!!)
userService.unfollow(target.id, follower.id) userService.unfollow(target.id, follower.id)
} }
return ActivityPubStringResponse(HttpStatusCode.OK, "Accept")
} }
else -> {} else -> {}