From 219c7fa6ec0abaf8ea12086aab2baf1d82bdc71f Mon Sep 17 00:00:00 2001 From: dakkar Date: Thu, 2 Nov 2023 14:28:23 +0000 Subject: [PATCH] always preserve old text when editing a note before this change: * create a note, with text * `note` has a row with the text * `note_edit` doesn't have any matching row * edit the note, removing all the text * the row in `note` has the new, empty, text * `note_edit` has a matching row, but its `oldText` is NULL so the original text is lost after this change, the row in `note_edit` always keeps the previous text --- packages/backend/src/core/NoteEditService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/NoteEditService.ts b/packages/backend/src/core/NoteEditService.ts index 1961fe72ee..3cbf975e56 100644 --- a/packages/backend/src/core/NoteEditService.ts +++ b/packages/backend/src/core/NoteEditService.ts @@ -393,7 +393,7 @@ export class NoteEditService implements OnApplicationShutdown { await this.noteEditRepository.insert({ id: this.idService.gen(), noteId: oldnote.id, - oldText: update.text ? oldnote.text : undefined, + oldText: oldnote.text || undefined, newText: update.text || undefined, cw: update.cw || undefined, fileIds: undefined,