diff --git a/src/views/backups.js b/src/views/backups.js index 2609aeb74..c553863fc 100644 --- a/src/views/backups.js +++ b/src/views/backups.js @@ -610,7 +610,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat backupConfig.mountOptions = {}; if (backupConfig.provider === 'cifs' || backupConfig.provider === 'sshfs' || backupConfig.provider === 'nfs') { - backupConfig.mountPoint = '/mnt/cloudron-backups'; // harcoded for ease of use + backupConfig.mountPoint = '/mnt/cloudronbackups'; // harcoded for ease of use backupConfig.mountOptions.host = $scope.configureBackup.mountOptions.host; backupConfig.mountOptions.remoteDir = $scope.configureBackup.mountOptions.remoteDir; @@ -623,7 +623,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat backupConfig.mountOptions.privateKey = $scope.configureBackup.mountOptions.privateKey; } } else if (backupConfig.provider === 'ext4') { - backupConfig.mountPoint = '/mnt/cloudron-backups'; // harcoded for ease of use + backupConfig.mountPoint = '/mnt/cloudronbackups'; // harcoded for ease of use backupConfig.mountOptions.diskPath = $scope.configureBackup.mountOptions.diskPath; } else if (backupConfig.provider === 'mountpoint') { backupConfig.mountPoint = $scope.configureBackup.mountPoint;