mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-04-28 06:39:27 +00:00
Fixed
- Remote configuration URIs are now correctly encrypted when saved after editing in the settings dialogue. - Fixed an issue where devices could no longer upload after another device performed 'Fresh Start Wipe' and 'Overwrite remote' in Object Storage mode (#848).
This commit is contained in:
parent
b0a9bd84d6
commit
3e4db571cd
2 changed files with 3 additions and 3 deletions
2
src/lib
2
src/lib
|
|
@ -1 +1 @@
|
|||
Subproject commit 963a21f1d20f48d0336edbea92da41629050dc7a
|
||||
Subproject commit d97288da2bf7041d4e34f4d430797a6f850dc343
|
||||
|
|
@ -254,7 +254,7 @@ export function paneRemoteConfig(
|
|||
id,
|
||||
name: name.trim() || "New Remote",
|
||||
uri: serializeRemoteConfiguration(nextSettings),
|
||||
isEncrypted: nextSettings.encrypt,
|
||||
isEncrypted: false,
|
||||
};
|
||||
this.editingSettings.remoteConfigurations = configs;
|
||||
if (!this.editingSettings.activeConfigurationId) {
|
||||
|
|
@ -361,7 +361,7 @@ export function paneRemoteConfig(
|
|||
nextConfigs[config.id] = {
|
||||
...config,
|
||||
uri: serializeRemoteConfiguration(nextSettings),
|
||||
isEncrypted: nextSettings.encrypt,
|
||||
isEncrypted: false,
|
||||
};
|
||||
this.editingSettings.remoteConfigurations = nextConfigs;
|
||||
await persistRemoteConfigurations(config.id === this.editingSettings.activeConfigurationId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue