Update api.js

This commit is contained in:
Justin 2020-08-12 21:49:48 -04:00 committed by GitHub
parent f273b3d43e
commit 314a194368
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,7 +141,7 @@ router.post('/new-backup', function(req, res, next) {
res.send();
return;
}
let name = 'Manual-' + moment().format('YYYY-MM-DD_HH:mm');
let name = 'Manual-' + moment().format('YYYY-MM-DD_HH-mm');
hassioApiTools.createNewBackup(name).then((id) => {
hassioApiTools.downloadSnapshot(id)
.then(() => {
@ -185,4 +185,4 @@ router.post('/clean-now', function(req, res, next){
module.exports = router;
module.exports = router;