mirror of https://github.com/arendst/Tasmota.git
commit
c786fd342d
|
@ -2402,9 +2402,9 @@ chknext:
|
||||||
rstring[0] = 0;
|
rstring[0] = 0;
|
||||||
int8_t index = fvar;
|
int8_t index = fvar;
|
||||||
#ifdef MQTT_DATA_STRING
|
#ifdef MQTT_DATA_STRING
|
||||||
char *wd = TasmotaGlobal.mqtt_data;
|
char *wd = (char*)TasmotaGlobal.mqtt_data.c_str();
|
||||||
#else
|
#else
|
||||||
char *wd = TasmotaGlobal.mqtt_data.c_str();
|
char *wd = TasmotaGlobal.mqtt_data;
|
||||||
#endif
|
#endif
|
||||||
strlcpy(rstring, wd, glob_script_mem.max_ssize);
|
strlcpy(rstring, wd, glob_script_mem.max_ssize);
|
||||||
if (index) {
|
if (index) {
|
||||||
|
|
|
@ -1302,7 +1302,7 @@ void DisplayDTVarsTeleperiod(void) {
|
||||||
char *json = (char*)malloc(jlen + 2);
|
char *json = (char*)malloc(jlen + 2);
|
||||||
if (json) {
|
if (json) {
|
||||||
#ifdef MQTT_DATA_STRING
|
#ifdef MQTT_DATA_STRING
|
||||||
strlcpy(json, TasmotaGlobal.mqtt_data.c_str(), jlen + 1);
|
strlcpy(json, (char*)TasmotaGlobal.mqtt_data.c_str(), jlen + 1);
|
||||||
#else
|
#else
|
||||||
strlcpy(json, TasmotaGlobal.mqtt_data, jlen + 1);
|
strlcpy(json, TasmotaGlobal.mqtt_data, jlen + 1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -1325,7 +1325,7 @@ void get_dt_mqtt(void) {
|
||||||
ResponseJsonEnd();
|
ResponseJsonEnd();
|
||||||
}
|
}
|
||||||
#ifdef MQTT_DATA_STRING
|
#ifdef MQTT_DATA_STRING
|
||||||
get_dt_vars(TasmotaGlobal.mqtt_data.c_str());
|
get_dt_vars((char*)TasmotaGlobal.mqtt_data.c_str());
|
||||||
#else
|
#else
|
||||||
get_dt_vars(TasmotaGlobal.mqtt_data);
|
get_dt_vars(TasmotaGlobal.mqtt_data);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue