hubot-rss-poller
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -83,5 +83,7 @@ 'use strict'; | ||
options.robot.logger.info('Starting feed poller for ' + options.name + '.'); | ||
checkFeed(); | ||
setTimeout(function () { | ||
checkFeed(); | ||
setInterval(checkFeed, options.pingInterval * 1000); | ||
setInterval(checkFeed, options.pingInterval * 1000); | ||
}, (options.initialDelay || 3) * 1000); | ||
} | ||
@@ -88,0 +90,0 @@ |
{ | ||
"name": "hubot-rss-poller", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A simple poller for RSS feeds in hubot. It will alert to chat on updates to the feed polled on a regular interval.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -20,5 +20,6 @@ # Hubot Rss Poller | ||
"alertPrefix": "A prefix to the output message goes here.", | ||
"alertSuffix": "a suffix to an output message goes here." | ||
"alertSuffix": "a suffix to an output message goes here.", | ||
"initialDelay": "3" // initial wait (in seconds) check to allow hubot to connect" | ||
}] | ||
} | ||
``` |
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
9993
170
25