node-red-node-twitter
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -377,2 +377,6 @@ | ||
node.error(res.errors[0].message); | ||
clearInterval(pollId); | ||
node.timeout_ids.push(setTimeout(function() { | ||
node.poll(interval,url,opts); | ||
},interval)) | ||
return; | ||
@@ -442,3 +446,7 @@ } | ||
if (res.errors) { | ||
throw new Error(res.errors[0].message); | ||
node.error(res.errors[0].message); | ||
node.timeout_ids.push(setTimeout(function() { | ||
node.pollDirectMessages(); | ||
},interval)) | ||
return; | ||
} | ||
@@ -464,2 +472,6 @@ var since = "0"; | ||
node.error(res.errors[0].message); | ||
clearInterval(pollId); | ||
node.timeout_ids.push(setTimeout(function() { | ||
node.pollDirectMessages(); | ||
},interval)) | ||
return; | ||
@@ -466,0 +478,0 @@ } |
{ | ||
"name": "node-red-node-twitter", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A Node-RED node to talk to Twitter", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
73703
1164
0