From 9fb3fccb320638ac465d0acdc1073e53846fa06d Mon Sep 17 00:00:00 2001 From: Richard de Boer Date: Sun, 19 Jun 2022 20:00:54 +0200 Subject: [PATCH] ClockFace: minor cleanup No idea how that `true` got there, but it does nothing. --- modules/ClockFace.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ClockFace.js b/modules/ClockFace.js index cd014887b..25b278846 100644 --- a/modules/ClockFace.js +++ b/modules/ClockFace.js @@ -108,7 +108,7 @@ ClockFace.prototype.resume = function() { delete this._last; this.paused = false; if (this._resume) this._resume.apply(this); - this.tick(true); + this.tick(); }; /**