change interval from 6 seconds to 1 minute

This commit is contained in:
2022-02-27 16:42:36 +01:00
parent 8a351dc54f
commit c9d8d30128
+1 -1
View File
@@ -23,7 +23,7 @@ module.exports = class PostHandler {
this.logger.info(error);
if (tries <= maxAmountOfTries) {
this.logger.info("this was try number: " + tries)
await sleep(6000);
await sleep(60000);
await this.#renewPost();
return resolve(this.shouldReplyTo(botName, tries + 1));
} else {