if note doesn't exist we don't try to activate it

This commit is contained in:
azivner
2017-12-15 21:36:21 -05:00
parent 6edaf0ed00
commit df69dbb2e1
3 changed files with 10 additions and 2 deletions

View File

@@ -265,7 +265,7 @@ async function checkContentHash(syncContext) {
for (const key in hashes) {
if (hashes[key] !== resp.hashes[key]) {
allChecksPassed = true;
allChecksPassed = false;
await event_log.addEvent(`Content hash check for ${key} FAILED. Local is ${hashes[key]}, remote is ${resp.hashes[key]}`);