diff --git a/src/main/kotlin/com/example/sharing/domain/chat/service/SendChat2Service.kt b/src/main/kotlin/com/example/sharing/domain/chat/service/SendChat2Service.kt index fe9e2c4..52ca550 100644 --- a/src/main/kotlin/com/example/sharing/domain/chat/service/SendChat2Service.kt +++ b/src/main/kotlin/com/example/sharing/domain/chat/service/SendChat2Service.kt @@ -59,6 +59,6 @@ class SendChat2Service( } } - fcmService.sendMessage(privateRoom.userB.deviceToken, "채팅", chat.text) + fcmService.sendMessage(privateRoom.userB.deviceToken, privateRoom.userB.name, chat.text) } }