Browse Source

Fix timer

ghorsington 5 years ago
parent
commit
1ad949031f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      commands/news_aggregator.js

+ 1 - 1
commands/news_aggregator.js

@@ -141,7 +141,7 @@ function initAggregators() {
 
 function onStart() {
     initAggregators();
-    interval(checkFeeds, UPDATE_INTERVAL * 1000);
+    interval(checkFeeds, UPDATE_INTERVAL * 60 * 1000);
 };
 
 module.exports = {