Fix starting with a URL

This commit is contained in:
Ben Hardill 2016-02-20 17:50:37 +00:00
parent b33571b240
commit 71f1de7984
1 changed files with 57 additions and 57 deletions

View File

@ -35,7 +35,7 @@ module.exports = function(RED) {
if (node.url) {
try {
eddystoneBeacon.advertiseUrl(msg.payload, node.options);
eddystoneBeacon.advertiseUrl(node.url, node.options);
} catch(e){
node.error('Error setting beacon URL', e);
}