From fd5e10c54c3aaef674fecd6df155e26ed05c06b0 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 27 Apr 2026 20:10:53 +0100 Subject: [PATCH] Fix an inverted default for should_commit. --- include/serialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/serialize.h b/include/serialize.h index 8c95be86b..48f70feeb 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -75,7 +75,7 @@ private: /* The last time this object was committed to the database */ time_t last_commit_time = 0; /** Whether this object should be committed to the database. */ - bool should_commit = false; + bool should_commit = true; protected: Serializable(const Anope::string &serialize_type);