1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2025-03-03 15:32:25 +02:00

Improved:

- Now replication will be paced by collecting chunks.
This commit is contained in:
vorotamoroz 2023-05-09 17:49:40 +09:00
parent 7c06750d93
commit 8d66c372e1
2 changed files with 11 additions and 1 deletions

View File

@ -1599,6 +1599,16 @@ ${stringifyYaml(pluginConfig)}`;
})
);
new Setting(containerHatchEl)
.setName("Do not pace synchronization")
.setDesc("If this toggle enabled, synchronisation will not be paced by queued entries. If synchronisation has been deadlocked, please make this enabled once.")
.addToggle((toggle) =>
toggle.setValue(this.plugin.settings.doNotPaceReplication).onChange(async (value) => {
this.plugin.settings.doNotPaceReplication = value;
await this.plugin.saveSettings();
})
);

@ -1 +1 @@
Subproject commit fb3070851f4eead9461869b0dbbc497f17129d07
Subproject commit 051b50ca38ec4c05a11e8216ac259b4488b825f0