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

This commit is contained in:
usbharu 2023-10-31 16:26:46 +09:00
parent 51a477d5b9
commit f84dc530fa
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
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 -> {}