From 2c3e12a42c675a0b23ae72d7d0045bc4504d5630 Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 27 Aug 2025 19:18:46 +0900 Subject: [PATCH] =?UTF-8?q?fix(chat-room):=20=EC=84=B8=EC=85=98=20?= =?UTF-8?q?=EC=A2=85=EB=A3=8C=20=EC=99=B8=EB=B6=80=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ContentType 설정 제거 --- .../co/vividnext/sodalive/chat/room/service/ChatRoomService.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/room/service/ChatRoomService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/room/service/ChatRoomService.kt index 975310b..4a6ffad 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/room/service/ChatRoomService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/room/service/ChatRoomService.kt @@ -458,7 +458,6 @@ class ChatRoomService( val headers = HttpHeaders() headers.set("x-api-key", apiKey) - headers.contentType = MediaType.APPLICATION_JSON val httpEntity = HttpEntity(null, headers)