소스 검색

Fix timer

ghorsington 5 년 전
부모
커밋
1ad949031f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 = {