Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
341801c357
⬆️ Update dependency @fortawesome/fontawesome-free to v6.2.0 2022-08-30 18:36:01 +00:00
5 changed files with 18 additions and 19 deletions

View File

@ -7,9 +7,9 @@
"start": "node ./bin/www.js " "start": "node ./bin/www.js "
}, },
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-free": "6.2.1", "@fortawesome/fontawesome-free": "6.2.0",
"app-root-path": "3.0.0", "app-root-path": "3.0.0",
"bootstrap": "5.1.3", "bootstrap": "5.2.0",
"cookie-parser": "1.4.6", "cookie-parser": "1.4.6",
"cron": "2.1.0", "cron": "2.1.0",
"debug": "4.3.4", "debug": "4.3.4",

View File

@ -21,7 +21,7 @@ router.get("/formated-local-snap", function (req, res, next) {
hassioApiTools.getSnapshots() hassioApiTools.getSnapshots()
.then((snaps) => { .then((snaps) => {
snaps.sort((a, b) => { snaps.sort((a, b) => {
return Date.parse(b.date) - Date.parse(a.date); return a.date < b.date ? 1 : -1
}); });
res.render("localSnaps", { snaps: snaps, DateTime: DateTime }); res.render("localSnaps", { snaps: snaps, DateTime: DateTime });
@ -43,7 +43,7 @@ router.get("/formated-backup-manual", function (req, res, next) {
.getFolderContent(webdav.getConf().back_dir + pathTools.manual) .getFolderContent(webdav.getConf().back_dir + pathTools.manual)
.then((contents) => { .then((contents) => {
contents.sort((a, b) => { contents.sort((a, b) => {
return Date.parse(b.lastmod) - Date.parse(a.lastmod) return a.date < b.date ? 1 : -1
}); });
//TODO Remove this when bug is fixed, etag contain '&quot;' at start and end ? //TODO Remove this when bug is fixed, etag contain '&quot;' at start and end ?
for (let backup of contents) { for (let backup of contents) {
@ -67,7 +67,7 @@ router.get("/formated-backup-auto", function (req, res, next) {
.getFolderContent(url) .getFolderContent(url)
.then((contents) => { .then((contents) => {
contents.sort((a, b) => { contents.sort((a, b) => {
return Date.parse(b.lastmod) - Date.parse(a.lastmod) return a.date < b.date ? 1 : -1
}); });
//TODO Remove this when bug is fixed, etag contain '&quot;' at start and end ? //TODO Remove this when bug is fixed, etag contain '&quot;' at start and end ?
for (let backup of contents) { for (let backup of contents) {

View File

@ -295,7 +295,7 @@ function clean() {
return; return;
} }
snaps.sort((a, b) => { snaps.sort((a, b) => {
return Date.parse(b.date) - Date.parse(a.date); return a.date < b.date ? 1 : -1
}); });
let toDel = snaps.slice(limit); let toDel = snaps.slice(limit);
for (let i of toDel) { for (let i of toDel) {

View File

@ -380,13 +380,12 @@ class WebdavTools {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
this.getFolderContent(this.getConf().back_dir + pathTools.auto) this.getFolderContent(this.getConf().back_dir + pathTools.auto)
.then(async (contents) => { .then(async (contents) => {
if (contents.length < limit) { if (contents.length < limit) {
resolve(); resolve();
return; return;
} }
contents.sort((a, b) => { contents.sort((a, b) => {
return Date.parse(b.lastmod) - Date.parse(a.lastmod) return a.date < b.date ? 1 : -1
}); });
let toDel = contents.slice(limit); let toDel = contents.slice(limit);

View File

@ -23,10 +23,10 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@fortawesome/fontawesome-free@npm:6.2.1": "@fortawesome/fontawesome-free@npm:6.2.0":
version: 6.2.1 version: 6.2.0
resolution: "@fortawesome/fontawesome-free@npm:6.2.1" resolution: "@fortawesome/fontawesome-free@npm:6.2.0"
checksum: c77b7c8b0965e5c17f4ca45667885b6273e26af97a9e83db343fc756c159b5acd35cf420e73e1b916af1d275179290ccfb1900af48631749e30f36464f339bd3 checksum: fd3fcc0a963b907110922b5ac0ca67633aea20b5034102a1f5d285830f7f7a27f9c9de0c4a30228ccd2579bd8f95581a1bbef9519c7b74632e7012d60dd57bb7
languageName: node languageName: node
linkType: hard linkType: hard
@ -197,12 +197,12 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"bootstrap@npm:5.1.3": "bootstrap@npm:5.2.0":
version: 5.1.3 version: 5.2.0
resolution: "bootstrap@npm:5.1.3" resolution: "bootstrap@npm:5.2.0"
peerDependencies: peerDependencies:
"@popperjs/core": ^2.10.2 "@popperjs/core": ^2.11.5
checksum: 301b5ed872efba061104cf22ac93568e3837867fb5527ab9326a51510fb752bd4883e1d488225c8be72f86d9d3a55ef5b166aa7fa62c2fdd077c3f05b65752f8 checksum: 9dbfb5d26bbdac3e27a6b46cb7456cd4dd75ae3b48644737809885b8ea9c265d3359c4cdbf25a55bb7e5046f51e441557033ba21eeaf24ef8316bfbb3d420084
languageName: node languageName: node
linkType: hard linkType: hard
@ -1093,9 +1093,9 @@ __metadata:
version: 0.0.0-use.local version: 0.0.0-use.local
resolution: "nexcloud-backup@workspace:." resolution: "nexcloud-backup@workspace:."
dependencies: dependencies:
"@fortawesome/fontawesome-free": 6.2.1 "@fortawesome/fontawesome-free": 6.2.0
app-root-path: 3.0.0 app-root-path: 3.0.0
bootstrap: 5.1.3 bootstrap: 5.2.0
cookie-parser: 1.4.6 cookie-parser: 1.4.6
cron: 2.1.0 cron: 2.1.0
debug: 4.3.4 debug: 4.3.4