mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	server-ts: Fix getContent in updateNoteData
This commit is contained in:
		
							parent
							
								
									b84b27692c
								
							
						
					
					
						commit
						a354b54a08
					
				@ -5,7 +5,7 @@ export interface AttachmentRow {
 | 
			
		||||
    ownerId?: string;
 | 
			
		||||
    role: string;
 | 
			
		||||
    mime: string;
 | 
			
		||||
    title?: string;
 | 
			
		||||
    title: string;
 | 
			
		||||
    position?: number;
 | 
			
		||||
    blobId?: string;
 | 
			
		||||
    isProtected?: boolean;
 | 
			
		||||
 | 
			
		||||
@ -744,7 +744,7 @@ function saveRevisionIfNeeded(note: BNote) {
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function updateNoteData(noteId: string, content: string, attachments: BAttachment[] = []) {
 | 
			
		||||
function updateNoteData(noteId: string, content: string, attachments: AttachmentRow[] = []) {
 | 
			
		||||
    const note = becca.getNote(noteId);
 | 
			
		||||
 | 
			
		||||
    if (!note || !note.isContentAvailable()) {
 | 
			
		||||
@ -760,11 +760,7 @@ function updateNoteData(noteId: string, content: string, attachments: BAttachmen
 | 
			
		||||
    if (attachments?.length > 0) {
 | 
			
		||||
        const existingAttachmentsByTitle = utils.toMap(note.getAttachments({includeContentLength: false}), 'title');
 | 
			
		||||
 | 
			
		||||
        for (const attachment of attachments) {
 | 
			
		||||
            // TODO: The content property was extracted directly instead of `getContent`. To investigate.
 | 
			
		||||
            const {attachmentId, role, mime, title, position} = attachment;
 | 
			
		||||
            const content = attachment.getContent();
 | 
			
		||||
 | 
			
		||||
        for (const {attachmentId, role, mime, title, position, content} of attachments) {
 | 
			
		||||
            if (attachmentId || !(title in existingAttachmentsByTitle)) {
 | 
			
		||||
                note.saveAttachment({attachmentId, role, mime, title, content, position});
 | 
			
		||||
            } else {
 | 
			
		||||
@ -772,10 +768,12 @@ function updateNoteData(noteId: string, content: string, attachments: BAttachmen
 | 
			
		||||
                existingAttachment.role = role;
 | 
			
		||||
                existingAttachment.mime = mime;
 | 
			
		||||
                existingAttachment.position = position;
 | 
			
		||||
                if (content) {
 | 
			
		||||
                    existingAttachment.setContent(content, {forceSave: true});
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function undeleteNote(noteId: string, taskContext: TaskContext) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user