From 007a87a536a78d773ea217991744494c4f742feb Mon Sep 17 00:00:00 2001 From: Alexander Sabino <32822107+asabino2@users.noreply.github.com> Date: Thu, 7 May 2026 11:45:28 +0100 Subject: [PATCH] =?UTF-8?q?corrige=20chamada=20de=20fun=C3=A7=C3=A3o=20par?= =?UTF-8?q?a=20remo=C3=A7=C3=A3o=20de=20snapshot=20anterior=20no=20BackupS?= =?UTF-8?q?ervice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backupService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backupService.js b/src/backupService.js index 6a7ebf0..4aa4d30 100644 --- a/src/backupService.js +++ b/src/backupService.js @@ -456,7 +456,7 @@ class BackupService { } } else { // Full: remove .snar anterior para forçar snapshot limpo. - await fsp.rm(absoluteSnapshotPath, { force: true }).catch(() => null); + await fs.rm(absoluteSnapshotPath, { force: true }).catch(() => null); tarIncrementalFlag = `--listed-incremental=${shellQuote('/backuproot/' + snapshotRelativePath)}`; } }