set 0 as default value for seconds

pull/3303/head
Paul Arguillère 2024-03-27 19:11:20 +01:00
parent 13b82670a3
commit df787b6db1
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ var data = Object.assign({
D: now.getDate(),
h: now.getHours(),
m: now.getMinutes(),
s: now.getSeconds()
s: 0
}
}, require('Storage').readJSON(APP_NAME + ".data.json", true) || {});