diff --git a/webserver/src/main/kotlin/space/mori/chzzk_bot/webserver/routes/ApiRoutes.kt b/webserver/src/main/kotlin/space/mori/chzzk_bot/webserver/routes/ApiRoutes.kt index 12f1628..e3abf4d 100644 --- a/webserver/src/main/kotlin/space/mori/chzzk_bot/webserver/routes/ApiRoutes.kt +++ b/webserver/src/main/kotlin/space/mori/chzzk_bot/webserver/routes/ApiRoutes.kt @@ -126,11 +126,6 @@ fun Routing.apiRoutes() { } val matchResult = chzzkIDRegex.find(body.chzzkUrl) - matchResult?.groups?.forEach { - if (it != null) { - println(it.value) - } - } val matchedChzzkId = matchResult?.groups?.get(1)?.value if (matchedChzzkId == null) {