From c1cbc3937779482f43cd214263ebcd5d1b748517 Mon Sep 17 00:00:00 2001 From: stephenPspackman <93166870+stephenPspackman@users.noreply.github.com> Date: Mon, 13 Dec 2021 13:00:29 -0800 Subject: [PATCH] Update app.js Remove an unneeded piece of defensiveness. --- apps/pooqroman/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/pooqroman/app.js b/apps/pooqroman/app.js index 9e13e6e03..bed8ef3d2 100644 --- a/apps/pooqroman/app.js +++ b/apps/pooqroman/app.js @@ -769,7 +769,7 @@ class Clock { this.rates.clock = this.timescales[this.options.resolution]; this.active(); for (const l in this.listeners) { - this.listeners[l] && Bangle.on(l, this.listeners[l]); + Bangle.on(l, this.listeners[l]); } Bangle.setUI('clock'); return this;