diff options
-rwxr-xr-x | plugins/Msg_Export/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/utils.cpp b/plugins/Msg_Export/src/utils.cpp index 41123cb714..5a98f610c4 100755 --- a/plugins/Msg_Export/src/utils.cpp +++ b/plugins/Msg_Export/src/utils.cpp @@ -714,7 +714,7 @@ static bool ExportDBEventInfo(MCONTACT hContact, HANDLE hFile, wstring sFilePath int age = db_get_w(hContact, szProto, "Age", 0);
if (age != 0)
- pInfo.push_back(JSONNode("gender", age));
+ pInfo.push_back(JSONNode("age", age));
for (auto &it : pSettings) {
wstring szValue = _DBGetStringW(hContact, szProto, it, L"");
|