mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
8ffabf1813
commit
548f45cd56
@ -291,7 +291,9 @@ module.exports = function(RED) {
|
||||
|
||||
this.publish = function (msg) {
|
||||
if (node.connected) {
|
||||
if (!Buffer.isBuffer(msg.payload)) {
|
||||
if (msg.payload === null || msg.payload === undefined) {
|
||||
msg.payload = "";
|
||||
} else if (!Buffer.isBuffer(msg.payload)) {
|
||||
if (typeof msg.payload === "object") {
|
||||
msg.payload = JSON.stringify(msg.payload);
|
||||
} else if (typeof msg.payload !== "string") {
|
||||
|
Loading…
Reference in New Issue
Block a user