1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:24:49 +02:00

Fix an inverted default for should_commit.

This commit is contained in:
Sadie Powell
2026-04-27 20:10:53 +01:00
parent 029565c894
commit fd5e10c54c
+1 -1
View File
@@ -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);