mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
994039de15
@ -26,7 +26,8 @@ module.exports = function(RED) {
|
|||||||
var node = this;
|
var node = this;
|
||||||
|
|
||||||
var isObject = function(a) {
|
var isObject = function(a) {
|
||||||
return (!!a) && (a.constructor === Object);
|
if ((typeof(a) === "object") && (!Buffer.isBuffer(a)) && (!Array.isArray(a))) { return true; }
|
||||||
|
else { return false; }
|
||||||
};
|
};
|
||||||
|
|
||||||
this.on("input",function(msg) {
|
this.on("input",function(msg) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-dweetio",
|
"name" : "node-red-node-dweetio",
|
||||||
"version" : "0.0.7",
|
"version" : "0.0.10",
|
||||||
"description" : "A Node-RED node to send and receive simple dweets",
|
"description" : "A Node-RED node to send and receive simple dweets",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"node-dweetio" : "0.0.11"
|
"node-dweetio" : "0.0.11"
|
||||||
|
@ -314,7 +314,7 @@ module.exports = function(RED) {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
if (typeof msg.params === 'undefined') { msg.params = {}; }
|
if (typeof msg.params === 'undefined') { msg.params = {}; }
|
||||||
+ twit.updateStatus(msg.payload, msg.params, function (err, data) {
|
twit.updateStatus(msg.payload, msg.params, function (err, data) {
|
||||||
if (err) {
|
if (err) {
|
||||||
node.status({fill:"red",shape:"ring",text:"twitter.status.failed"});
|
node.status({fill:"red",shape:"ring",text:"twitter.status.failed"});
|
||||||
node.error(err,msg);
|
node.error(err,msg);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user