diff --git a/feed-domain/src/main/java/com/xquare/v1servicefeed/comment/api/impl/CommentApiImpl.java b/feed-domain/src/main/java/com/xquare/v1servicefeed/comment/api/impl/CommentApiImpl.java index fef2b12a..522f68b4 100644 --- a/feed-domain/src/main/java/com/xquare/v1servicefeed/comment/api/impl/CommentApiImpl.java +++ b/feed-domain/src/main/java/com/xquare/v1servicefeed/comment/api/impl/CommentApiImpl.java @@ -55,7 +55,7 @@ public void saveComment(CreateCommentDomainRequest request) { .build() ); - if(feed.getUserId().equals(userId)) { + if(!feed.getUserId().equals(userId)) { sendNotification(feed); } }