mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2025-12-13 09:45:56 +00:00
Fixed:
- Now the remote chunks could be decrypted even if we are using `Incubate chunks in Document`. (The note of 0.23.6 has been fixed). - Chunk retrieving with `Incubate chunks in document` got more efficiently. - No longer task processor misses the completed tasks. - Replication is no longer started automatically during changes in window visibility (e.g., task switching on the desktop) when off-focused.
This commit is contained in:
@@ -684,6 +684,7 @@ export class ConfigSync extends LiveSyncCommands {
|
||||
children: [],
|
||||
deleted: false,
|
||||
type: "newnote",
|
||||
eden: {}
|
||||
};
|
||||
} else {
|
||||
if (old.mtime == mtime) {
|
||||
|
||||
2
src/lib
2
src/lib
Submodule src/lib updated: 3c0ff967e9...57f0be0464
@@ -1374,6 +1374,7 @@ We can perform a command in this file.
|
||||
} else {
|
||||
// suspend all temporary.
|
||||
if (this.suspended) return;
|
||||
if (!this.hasFocus) return;
|
||||
await Promise.all(this.addOns.map(e => e.onResume()));
|
||||
if (this.settings.remoteType == REMOTE_COUCHDB) {
|
||||
if (this.settings.liveSync) {
|
||||
|
||||
Reference in New Issue
Block a user