From fbfcc8e79918802f9641591d7e59ada90697892d Mon Sep 17 00:00:00 2001 From: Fifteen 15 Studios Date: Thu, 9 Dec 2021 20:10:47 -0500 Subject: [PATCH] Fix rotationDelay impacting page change --- MMM-pages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMM-pages.js b/MMM-pages.js index f6c60be..191aee5 100644 --- a/MMM-pages.js +++ b/MMM-pages.js @@ -182,7 +182,7 @@ Module.register('MMM-pages', { if (this.config.modules.length !== 0) { this.animatePageChange(); if (!this.rotationPaused) { - this.resetTimerWithDelay(this.config.rotationDelay); + this.resetTimerWithDelay(0); } this.sendNotification('NEW_PAGE', this.curPage); } else { Log.error("[Pages]: Pages aren't properly defined!"); }