mirror of https://github.com/arendst/Tasmota.git
Fix typo in berry mqtt (#19477)
This commit is contained in:
parent
d9acd2adb0
commit
7726f1eef4
|
@ -25,7 +25,7 @@ class be_class_MQTT_ntv (scope: global, name: MQTT_ntv) {
|
||||||
|
|
||||||
// mqtt module
|
// mqtt module
|
||||||
extern const bclass be_class_MQTT;
|
extern const bclass be_class_MQTT;
|
||||||
static int zigbee_init(bvm *vm) {
|
static int mqtt_init(bvm *vm) {
|
||||||
be_pushntvclass(vm, &be_class_MQTT);
|
be_pushntvclass(vm, &be_class_MQTT);
|
||||||
be_call(vm, 0);
|
be_call(vm, 0);
|
||||||
be_return(vm);
|
be_return(vm);
|
||||||
|
@ -34,7 +34,7 @@ static int zigbee_init(bvm *vm) {
|
||||||
#include "be_fixed_mqtt.h"
|
#include "be_fixed_mqtt.h"
|
||||||
/* @const_object_info_begin
|
/* @const_object_info_begin
|
||||||
module mqtt (scope: global) {
|
module mqtt (scope: global) {
|
||||||
init, func(zigbee_init)
|
init, func(mqtt_init)
|
||||||
}
|
}
|
||||||
@const_object_info_end */
|
@const_object_info_end */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue