From 48c5cb0f133980b6b378938e5a68fd8b4ab190c9 Mon Sep 17 00:00:00 2001 From: Andreas Rozek Date: Thu, 13 Jan 2022 09:00:17 +0100 Subject: [PATCH] Update Customizer.html --- apps/ac_ac/Customizer.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ac_ac/Customizer.html b/apps/ac_ac/Customizer.html index a08c88780..041aeb5af 100644 --- a/apps/ac_ac/Customizer.html +++ b/apps/ac_ac/Customizer.html @@ -132,7 +132,7 @@ } try { - localstorage.setItem('ac_ac',JSON.stringify(Configuration)) + localStorage.setItem('ac_ac',JSON.stringify(Configuration)) } catch (Signal) { console.error('could not backup clock configuration, reason',Signal) } @@ -143,7 +143,7 @@ function restoreConfiguration () { let Configuration = {} try { - Configuration = JSON.parse(localstorage.getItem('ac_ac') || '') + Configuration = JSON.parse(localStorage.getItem('ac_ac') || '') } catch (Signal) { /* nop */ } for (let Key in Configuration) { if (Configuration.hasOwnProperty(Key)) {