From c1a14a9c02410644085774b77b5faf12e3f0f8bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Thu, 7 Dec 2023 11:14:04 +0100 Subject: [PATCH] removed the notarization issuance from the status command (#51) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- tasmota/tasmota_support/support_command.ino | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tasmota/tasmota_support/support_command.ino b/tasmota/tasmota_support/support_command.ino index 9245aabc5afe..3ec8241db6ae 100644 --- a/tasmota/tasmota_support/support_command.ino +++ b/tasmota/tasmota_support/support_command.ino @@ -1272,20 +1272,7 @@ void CmndStatus(void) else Response_P(PSTR("{\"" D_CMND_STATUS D_STATUS10_SENSOR "\":")); -#ifdef USE_DRV_RDDL_NETWORK - if( claimNotarizationMutex() ) - { - int start_position = ResponseLength(); - MqttShowSensor(f_show_sensors); - int current_position = ResponseLength(); - size_t data_length = (size_t)(current_position - start_position); - const char* data_str = TasmotaGlobal.mqtt_data.c_str() + start_position; - runRDDLSDKNotarizationWorkflow(data_str, data_length); - releaseNotarizationMutex(); - } -#else MqttShowSensor(f_show_sensors); -#endif // USE_DRV_RDDL_NETWORK ResponseJsonEnd(); CmndStatusResponse((8 == payload) ? 8 : 10);