From 5500168198b88f3c3e740a88939883247a4daf2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Touati?= Date: Mon, 29 Apr 2024 18:31:16 +0200 Subject: [PATCH] Increase polling interval to 29 minutes --- 5m5v-bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5m5v-bot.js b/5m5v-bot.js index 6418aa5..819c8a6 100644 --- a/5m5v-bot.js +++ b/5m5v-bot.js @@ -19,7 +19,7 @@ const axios = require('axios'); const TweetFilter = require('./lib/filter'); const util = require('./lib/util'); -const pollingIntervalMs = 40 * 1000; +const pollingIntervalMs = 29 * 60 * 1000; const retryLoginDelayMs = 5 * 60 * 1000; const isDryRun = process.argv[2] === '--dry-run';