App links are never part of a backup

This commit is contained in:
Johannes Zellner
2022-09-28 12:13:32 +02:00
parent e5430bd488
commit ecd6e8d52d
+1 -1
View File
@@ -733,7 +733,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
fetchBackups();
getBackupConfig();
$scope.manualBackupApps = Client.getInstalledApps().filter(function (app) { return !app.enableBackup; });
$scope.manualBackupApps = Client.getInstalledApps().filter(function (app) { return app.type !== APP_TYPES.LINK && !app.enableBackup; });
// show backup status
$scope.createBackup.checkStatus();