Add missing category for IDO query

fixes #9928
This commit is contained in:
Michael Friedrich 2015-08-17 11:03:41 +02:00
parent ff974d4eee
commit 020533842b
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ void UserDbObject::OnConfigUpdate(void)
DbQuery query;
query.Type = DbQueryInsert;
query.Table = "contact_addresses";
query.Category = DbCatConfig;
query.Fields = fields;
OnQuery(query);
}