From: Olaf Wintermann Date: Wed, 22 Oct 2025 18:38:12 +0000 (+0200) Subject: fix missing resource_id update in note_store_new_note_async X-Git-Url: https://uap-core.de/gitweb/?a=commitdiff_plain;h=31c73969179d2438140b8505bb005adf3551a241;p=note.git fix missing resource_id update in note_store_new_note_async --- 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; }