node-red-contrib-sonospollytts
Advanced tools
Comparing version 1.0.4 to 1.0.5
# Node-Red | ||
<p> | ||
<b>Version 1.0.5</b><br/> | ||
- respect Node-RED httpRoot setting (this is necessary e.g. in environments where Node-RED runs behind a reverse proxy on a non-root path). Thanks @hobbyquaker.<br/> | ||
</p> | ||
<p> | ||
<b>Version 1.0.4</b><br/> | ||
@@ -4,0 +8,0 @@ - Little minor update<br/> |
{ | ||
"name": "node-red-contrib-sonospollytts", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Node-Red TTS with Sonos and Amazon Polly", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -464,4 +464,5 @@ module.exports = function(RED) { | ||
// Store Noder-Red complete URL | ||
sNoderedURL="http://"+ config.noderedipaddress + ":" + config.noderedport; | ||
sNoderedURL="http://"+ config.noderedipaddress + ":" + config.noderedport + RED.settings.httpRoot; | ||
RED.log.info('Node-Red URL: ' + sNoderedURL); | ||
// Create sonos client | ||
@@ -468,0 +469,0 @@ SonosClient = new sonos.Sonos(sSonosIPAddress); |
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
305115
787