We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a3e8eb commit d519fa2Copy full SHA for d519fa2
src/nodes/ered_node_mqtt_out.erl
@@ -32,6 +32,7 @@
32
post_exception_or_debug/3
33
]).
34
-import(ered_messages, [
35
+ any_to_binary/1,
36
convert_to_num/1,
37
to_bool/1
38
@@ -185,7 +186,7 @@ handle_msg(
185
186
Data = {
187
publish_payload,
188
Payload,
- MsgTopic,
189
+ any_to_binary(MsgTopic),
190
convert_to_num(QoS),
191
to_bool(Retain)
192
},
@@ -221,7 +222,7 @@ handle_msg(
221
222
223
224
- NodeTopic,
225
+ any_to_binary(NodeTopic),
226
227
228
0 commit comments