Fix app import

This commit is contained in:
Girish Ramakrishnan
2025-08-02 19:09:21 +02:00
parent 4c74908789
commit ead6d9c7d3
7 changed files with 36 additions and 38 deletions
+2 -2
View File
@@ -2360,8 +2360,8 @@ async function importApp(app, data, auditSource) {
provider: data.provider,
config: data.config,
format: data.format,
encryptionPassword: data.encryptionPassword,
encryptedFilenames: data.encryptedFilenames
encryptionPassword: data.encryptionPassword ?? null,
encryptedFilenames: data.encryptedFilenames ?? false
});
restoreConfig = { remotePath: data.remotePath, backupTarget };