diff --git a/src/main/kotlin/dev/usbharu/hideout/core/service/post/PostServiceImpl.kt b/src/main/kotlin/dev/usbharu/hideout/core/service/post/PostServiceImpl.kt index 02bdacd2..6e58fe8d 100644 --- a/src/main/kotlin/dev/usbharu/hideout/core/service/post/PostServiceImpl.kt +++ b/src/main/kotlin/dev/usbharu/hideout/core/service/post/PostServiceImpl.kt @@ -83,7 +83,7 @@ class PostServiceImpl( return try { val save = postRepository.save(post) timelineService.publishTimeline(post, isLocal) - actorRepository.save(actor.incrementPostsCount()) +// actorRepository.save(actor.incrementPostsCount()) save } catch (_: DuplicateException) { postRepository.findByApId(post.apId) ?: throw PostNotFoundException.withApId(post.apId)