From 31c73969179d2438140b8505bb005adf3551a241 Mon Sep 17 00:00:00 2001 From: Olaf Wintermann Date: Wed, 22 Oct 2025 20:38:12 +0200 Subject: [PATCH] fix missing resource_id update in note_store_new_note_async --- application/store.c | 1 + 1 file changed, 1 insertion(+) diff --git a/application/store.c b/application/store.c index ee52203..4323911 100644 --- a/application/store.c +++ b/application/store.c @@ -615,6 +615,7 @@ static int qthr_new_note(SaveNoteJob *job) { int64_t note_id; if(!dbuResultAsInt64(insert2Result, ¬e_id)) { job->note->note_id = note_id; + job->note->resource_id = n->resource_id; } else { job->error = 4; } -- 2.47.3