mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-06-27 16:43:56 +00:00
New Feature:
- Skip conflicted check while replication Fixed: - Rewrited replication reflection algorithm.
This commit is contained in:
+2
-2
@@ -253,7 +253,7 @@ export class LocalPouchDB {
|
||||
Logger("Conversion completed!", LOG_LEVEL.NOTICE);
|
||||
old.destroy(); // delete the old database.
|
||||
this.isReady = true;
|
||||
return nextSeq();
|
||||
return await nextSeq();
|
||||
} else {
|
||||
throw new Error("Conversion failed!");
|
||||
}
|
||||
@@ -265,7 +265,7 @@ export class LocalPouchDB {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return nextSeq();
|
||||
return await nextSeq();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user