mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Added support for msg.html (#773)
This commit is contained in:
@@ -37,7 +37,7 @@ module.exports = function(RED) {
|
||||
var sound = node.sound || msg.sound || null;
|
||||
var url = node.url || msg.url || null;
|
||||
var url_title = node.url_title || msg.url_title || null;
|
||||
var html = node.html || false;
|
||||
var html = node.html || msg.html || false;
|
||||
var attachment = msg.attachment || null;
|
||||
if (isNaN(pri)) {pri=0;}
|
||||
if (pri > 2) {pri = 2;}
|
||||
|
||||
Reference in New Issue
Block a user