diff --git a/dropbox/dropbox.js b/dropbox/dropbox.js index bd4394d8..c607171a 100644 --- a/dropbox/dropbox.js +++ b/dropbox/dropbox.js @@ -35,7 +35,7 @@ module.exports = function(RED) { function DropboxInNode(n) { RED.nodes.createNode(this,n); this.filepattern = n.filepattern || ""; - this.checkInterval = n.checkInterval || 600000; + this.checkInterval = n.checkInterval || 60000; this.dropboxConfig = RED.nodes.getNode(n.dropbox); var credentials = this.dropboxConfig ? this.dropboxConfig.credentials : {}; if (!credentials.appkey || !credentials.appsecret || @@ -61,10 +61,11 @@ module.exports = function(RED) { return; } node.status({}); - if (!node.state) { + if (!node.state) { // when executed for the first time only save cursor node.state = data.cursor(); } - else { + else { + node.state = data.cursor(); // reset cursor to get only changes since last poll var changes = data.changes; for (var i = 0; i < changes.length; i++) { var change = changes[i];