From 432cdb96d9a612416736a83bb96dec7975c197a3 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 1 Jan 2024 09:40:22 -0800 Subject: [PATCH] nostrdb/fix: don't write the owned flag to the DB Signed-off-by: William Casarin --- nostrdb/src/nostrdb.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nostrdb/src/nostrdb.c b/nostrdb/src/nostrdb.c index df305838..36e691e2 100644 --- a/nostrdb/src/nostrdb.c +++ b/nostrdb/src/nostrdb.c @@ -2665,6 +2665,9 @@ static void ndb_write_blocks(struct ndb_txn *txn, uint64_t note_key, int rc; MDB_val key, val; + // make sure we're not writing the owned flag to the db + blocks->flags &= ~NDB_BLOCK_FLAG_OWNED; + key.mv_data = ¬e_key; key.mv_size = sizeof(note_key); val.mv_data = blocks;