1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00

Desktop, Cli, Mobile: Remove the need for sync locks (#11377)

This commit is contained in:
Laurent Cozic
2024-11-12 19:02:44 +00:00
committed by GitHub
parent 388701015d
commit 6c0258e8a6
4 changed files with 171 additions and 182 deletions

View File

@@ -131,7 +131,6 @@ export default class Synchronizer {
public lockHandler() {
if (this.lockHandler_) return this.lockHandler_;
this.lockHandler_ = new LockHandler(this.api());
this.lockHandler_.enabled = Setting.value('featureFlag.syncLockEnabled');
return this.lockHandler_;
}