fixed variable write return error not a string
This commit is contained in:
parent
6ee55e363a
commit
0521b8daff
|
|
@ -94,7 +94,11 @@ static sys_error_code PayloadDefaultTypeHandler(data_message_t *MSG)
|
||||||
if (res == ESP_OK)
|
if (res == ESP_OK)
|
||||||
GetConfVar(VarName, VarValue, &tp);
|
GetConfVar(VarName, VarValue, &tp);
|
||||||
else
|
else
|
||||||
|
{
|
||||||
strcpy(VarValue, esp_err_to_name(res));
|
strcpy(VarValue, esp_err_to_name(res));
|
||||||
|
tp = VAR_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{ //Read variables
|
{ //Read variables
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user