mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-12 09:04:06 +02:00
Fixed:
- Now the empty (or deleted) file could be conflict-resolved.
This commit is contained in:
parent
5c96c7f99b
commit
618600c753
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user