fixed bug with isConflict

This commit is contained in:
sghsri
2021-10-17 15:29:25 -05:00
parent f4aebd4050
commit 7ffa96ebab
3 changed files with 12 additions and 13 deletions

View File

@@ -257,7 +257,7 @@ function checkConflicts(sendResponse) {
}
}
sendResponse({
isConflict: conflicts.length === 0,
isConflict: conflicts.length !== 0,
between: conflicts.length ? conflicts : undefined,
});
});