1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 05:56:38 +02:00

Fix missing CheckInit check in db_sql_live

This commit is contained in:
Adam
2013-02-16 00:31:42 -05:00
parent 7be23b7e37
commit c40e9c3996
+1 -1
View File
@@ -239,7 +239,7 @@ class DBMySQL : public Module, public Pipe
void OnSerializableUpdate(Serializable *obj) anope_override
{
if (obj->IsTSCached())
if (!this->CheckInit() || obj->IsTSCached())
return;
obj->UpdateTS();
this->updated_items.insert(obj);