node-red-contrib-play-audio
Advanced tools
Comparing version 2.2.3 to 2.2.4
{ | ||
"name": "node-red-contrib-play-audio", | ||
"version": "2.2.3", | ||
"version": "2.2.4", | ||
"description": "A node-red node for playing audio in the browser", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -21,2 +21,3 @@ /** | ||
RED.nodes.createNode(this,config); | ||
this.voice = config.voice || 0; | ||
var node = this; | ||
@@ -28,3 +29,3 @@ this.on('input', function(msg) { | ||
else if (typeof msg.payload === "string") { | ||
RED.comms.publish("playtts", msg.payload); | ||
RED.comms.publish("playtts", node.voice+"#"+msg.payload); | ||
} | ||
@@ -31,0 +32,0 @@ }); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18976
48