Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed legacy behaviour #51

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions tasmota/tasmota_support/support_command.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down