mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	fix searching without hoisting
This commit is contained in:
		@@ -219,14 +219,9 @@ function getNoteTitle(noteId, parentNoteId) {
 | 
			
		||||
function getNoteTitleArrayForPath(path) {
 | 
			
		||||
    const titles = [];
 | 
			
		||||
 | 
			
		||||
    if (path[0] === hoistedNoteService.getHoistedNoteId()) {
 | 
			
		||||
        if (path.length === 1) {
 | 
			
		||||
    if (path[0] === hoistedNoteService.getHoistedNoteId() && path.length === 1) {
 | 
			
		||||
        return [ getNoteTitle(hoistedNoteService.getHoistedNoteId()) ];
 | 
			
		||||
    }
 | 
			
		||||
        else {
 | 
			
		||||
            path = path.slice(1);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    let parentNoteId = 'root';
 | 
			
		||||
    let hoistedNotePassed = false;
 | 
			
		||||
@@ -257,13 +252,13 @@ function getNoteTitleForPath(path) {
 | 
			
		||||
 | 
			
		||||
function getSomePath(noteId, path) {
 | 
			
		||||
    if (noteId === 'root') {
 | 
			
		||||
        path.push(noteId);
 | 
			
		||||
        path.reverse();
 | 
			
		||||
 | 
			
		||||
        if (!path.includes(hoistedNoteService.getHoistedNoteId())) {
 | 
			
		||||
            return false;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        path.push(noteId);
 | 
			
		||||
        path.reverse();
 | 
			
		||||
 | 
			
		||||
        return path;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user