import/restore: add any prefix from the config into the remotePath
This commit is contained in:
@@ -274,7 +274,7 @@ function onBackupConfigChanged(event) {
|
||||
}
|
||||
|
||||
provider.value = data.provider;
|
||||
remotePath.value = data.remotePath;
|
||||
remotePath.value = data.config.prefix ? `${data.config.prefix}/${data.remotePath}` : data.remotePath;
|
||||
providerConfig.value = data.config;
|
||||
format.value = data.format;
|
||||
encrypted.value = !!data.encrypted;
|
||||
|
||||
Reference in New Issue
Block a user