mirror of https://github.com/espruino/BangleApps
Fix bug
parent
4bca60e070
commit
2cb7ed6f9f
|
@ -21,7 +21,7 @@ const SETTINGS_FILE = "dutchclock.json";
|
|||
|
||||
// Load settings
|
||||
const settings = Object.assign(
|
||||
storage.readJSON(DEFAULTS_FILE, true)?.settings || {},
|
||||
storage.readJSON(DEFAULTS_FILE, true) || {},
|
||||
storage.readJSON(SETTINGS_FILE, true) || {}
|
||||
);
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Dutch Clock",
|
||||
"shortName":"Dutch Clock",
|
||||
"icon": "app.png",
|
||||
"version":"0.02",
|
||||
"version":"0.03",
|
||||
"description": "A clock that displays the time the way a Dutch person would respond when asked what time it is.",
|
||||
"type": "clock",
|
||||
"tags": "clock,dutch,text",
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
// Load settings
|
||||
const settings = Object.assign(
|
||||
storage.readJSON(DEFAULTS_FILE, true)?.settings || {},
|
||||
storage.readJSON(DEFAULTS_FILE, true) || {},
|
||||
storage.readJSON(SETTINGS_FILE, true) || {}
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue