diff --git a/src/Application.kt b/src/Application.kt index 1e7cf8d..a40b613 100644 --- a/src/Application.kt +++ b/src/Application.kt @@ -54,12 +54,14 @@ fun Application.module(testing: Boolean = false) { is PartData.FormItem -> { if (part.name == "description") { println("Sending MQTT Message") + try { + + } val msgObj: MessageObject = gson.fromJson(part.value,MessageObject::class.java) mqttClient.publish("command/${msgObj.device_id}", message) } } } - part.dispose() } call.respond("1") }