renamed noteCache into becca

This commit is contained in:
zadam
2021-04-16 23:00:08 +02:00
parent af5b1021c7
commit f7e86c5be0
36 changed files with 199 additions and 199 deletions

View File

@@ -7,7 +7,7 @@ const zipImportService = require('../../services/import/zip');
const singleImportService = require('../../services/import/single');
const cls = require('../../services/cls');
const path = require('path');
const noteCacheLoader = require('../../services/note_cache/note_cache_loader.js');
const beccaLoader = require('../../services/note_cache/note_cache_loader.js');
const log = require('../../services/log');
const TaskContext = require('../../services/task_context.js');
@@ -77,10 +77,10 @@ async function importToBranch(req) {
}), 1000);
}
// import has deactivated note events so note cache is not updated
// import has deactivated note events so becca is not updated
// instead we force it to reload (can be async)
noteCacheLoader.load();
beccaLoader.load();
return note;
}