Fix: name of backupPathEnvSet variable

This commit is contained in:
Nicholas Wallace 2024-07-05 17:58:42 +00:00
parent 4d24817ced
commit a1688488e5

View File

@ -11,7 +11,7 @@ class BackupController {
res.json({
backups: this.backupManager.backups.map((b) => b.toJSON()),
backupLocation: this.backupManager.backupPath,
backupEnvSet: this.backupManager.backupPathEnvSet
backupPathEnvSet: this.backupManager.backupPathEnvSet
})
}