From 37ecd01c5efcb6aba1803be681eb97eaecd51a38 Mon Sep 17 00:00:00 2001 From: Marco Heiming Date: Sat, 29 Jan 2022 22:43:01 +0100 Subject: [PATCH] Fix colorize setting reading --- apps/circlesclock/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/circlesclock/app.js b/apps/circlesclock/app.js index 9e921ff5f..064072d05 100644 --- a/apps/circlesclock/app.js +++ b/apps/circlesclock/app.js @@ -233,7 +233,7 @@ function getCircleColor(type) { function getCircleIconColor(type, color) { const pos = getCirclePosition(type); - const colorizeIcon = settings["circle" + (pos + 1) + "colorizeIcon"] != undefined; + const colorizeIcon = settings["circle" + (pos + 1) + "colorizeIcon"] == true; if (colorizeIcon) { return color; } else {