fix autocomplete casing issue with first level notes

This commit is contained in:
azivner 2018-08-13 21:01:14 +02:00
parent a684879b91
commit 2a53bb03ae
2 changed files with 4 additions and 3 deletions

View file

@ -109,7 +109,7 @@ function search(noteId, tokens, path, results) {
}
const parents = childToParent[noteId];
if (!parents) {
if (!parents || noteId === 'root') {
return;
}
@ -119,11 +119,11 @@ function search(noteId, tokens, path, results) {
}
// archived must be inheritable
if (parentNoteId === 'root' || archived[parentNoteId] === 1) {
if (archived[parentNoteId] === 1) {
continue;
}
const title = getNoteTitle(noteId, parentNoteId);
const title = getNoteTitle(noteId, parentNoteId).toLowerCase();
const foundTokens = [];
for (const token of tokens) {

View file

@ -65,6 +65,7 @@ async function updateEntity(entity) {
delete clone.jsonContent;
delete clone.isOwned;
delete clone.isChanged;
delete clone.__attributeCache;
for (const key in clone) {
// !isBuffer is for images and attachments