mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	server: Fix empty note titles (closes #205)
This commit is contained in:
		@@ -1666,7 +1666,7 @@ class BNote extends AbstractBeccaEntity<BNote> {
 | 
				
			|||||||
    getPojo(): NotePojo {
 | 
					    getPojo(): NotePojo {
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            noteId: this.noteId,
 | 
					            noteId: this.noteId,
 | 
				
			||||||
            title: this.title || undefined,
 | 
					            title: this.title,
 | 
				
			||||||
            isProtected: this.isProtected,
 | 
					            isProtected: this.isProtected,
 | 
				
			||||||
            type: this.type,
 | 
					            type: this.type,
 | 
				
			||||||
            mime: this.mime,
 | 
					            mime: this.mime,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user