mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	fix protecting files/images
This commit is contained in:
		| @@ -346,6 +346,11 @@ async function updateNote(noteId, noteUpdates) { | ||||
|  | ||||
|     await saveNoteRevision(note); | ||||
|  | ||||
|     // if protected status changed, then we need to encrypt/decrypt the content anyway | ||||
|     if (['file', 'image'].includes(note.type) && note.isProtected !== noteUpdates.isProtected) { | ||||
|         noteUpdates.content = await note.getContent(); | ||||
|     } | ||||
|  | ||||
|     const noteTitleChanged = note.title !== noteUpdates.title; | ||||
|  | ||||
|     note.title = noteUpdates.title; | ||||
| @@ -357,6 +362,9 @@ async function updateNote(noteId, noteUpdates) { | ||||
|  | ||||
|         await note.setContent(noteUpdates.content); | ||||
|     } | ||||
|     else if (noteUpdates.content) { | ||||
|         await note.setContent(noteUpdates.content); | ||||
|     } | ||||
|  | ||||
|     if (noteTitleChanged) { | ||||
|         await triggerNoteTitleChanged(note); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user