mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-19 02:10:04 +08:00
fixed terminology
This commit is contained in:
parent
cd1ce48564
commit
1fdea480d3
@ -17,8 +17,8 @@ function printDiff(one, two) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkMissing(table, name, idsLeft, idsRight) {
|
function checkMissing(table, name, ids1, ids2) {
|
||||||
const missing = idsLeft.filter(item => idsRight.indexOf(item) < 0);
|
const missing = ids1.filter(item => ids2.indexOf(item) < 0);
|
||||||
|
|
||||||
if (missing.length > 0) {
|
if (missing.length > 0) {
|
||||||
console.log("Missing IDs from " + name + " table " + table + ": ", missing);
|
console.log("Missing IDs from " + name + " table " + table + ": ", missing);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user