From 42b103bc56c3c1a18910b838978bac6e0a815f1d Mon Sep 17 00:00:00 2001 From: Graham <4gra@users.noreply.github.com> Date: Wed, 7 Apr 2021 12:22:51 +0100 Subject: [PATCH] fed up of 12-hour default --- lib/client/clock-client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client/clock-client.js b/lib/client/clock-client.js index 73ac9c3baca..f3f19ff1c55 100644 --- a/lib/client/clock-client.js +++ b/lib/client/clock-client.js @@ -187,7 +187,7 @@ client.render = function render () { }; function updateClock () { - let timeDivisor = parseInt(client.settings.timeFormat ? client.settings.timeFormat : 12, 10); + let timeDivisor = parseInt(client.settings.timeFormat ? client.settings.timeFormat : 24, 10); let today = new Date() , h = today.getHours() % timeDivisor; if (timeDivisor === 12) {