1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00
- Now the empty (or deleted) file could be conflict-resolved.
This commit is contained in:
vorotamoroz 2023-08-24 04:00:56 +01:00
parent 5c96c7f99b
commit 618600c753

View File

@ -1901,6 +1901,9 @@ Or if you are sure know what had been happened, we can unlock the database from
const ret = [] as Diff[];
do {
const d = src.shift();
if (d === undefined) {
return ret;
}
const pieces = d[1].split(/([^\n]*\n)/).filter(f => f != "");
if (typeof (d) == "undefined") {
break;