From 5c00152de9192717dab52d97811049960f56361f Mon Sep 17 00:00:00 2001 From: lunaticbum Date: Wed, 6 May 2026 17:13:59 +0900 Subject: [PATCH] .. --- src/main/kotlin/network/NewsService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/network/NewsService.kt b/src/main/kotlin/network/NewsService.kt index 31c5fc3..dc766d8 100644 --- a/src/main/kotlin/network/NewsService.kt +++ b/src/main/kotlin/network/NewsService.kt @@ -156,7 +156,7 @@ object NewsService { val command = if (isWindows) { // 윈도우용: 큰따옴표 이스케이프에 주의해야 합니다. - val jsonBody = "{\"id\":\"$chatId\",\"message\":\"$encodedMessage\"}" + val jsonBody = "{\"id\":\"$chatId\",\"message\":\"$message\"}" listOf("cmd", "/c", "curl -s -X POST $url -H \"Content-Type: application/json\" -d \"$jsonBody\"") } else { // 맥/리눅스용: 홑따옴표를 사용하여 JSON 구조를 보호합니다.