diff options
author | Mataes <mataes2007@gmail.com> | 2020-04-25 16:54:40 +0300 |
---|---|---|
committer | Mataes <mataes2007@gmail.com> | 2020-04-25 16:54:40 +0300 |
commit | c9f5b74041f85d59dd061c7e1cfbe35d23ead9a3 (patch) | |
tree | 3aca603767d08b4f2f06ed98965dfdbc2ecbe475 /plugins/Msg_Export | |
parent | 555d5d02725f7f81562bdcdb7c2c5ae27230a4f4 (diff) |
Msg_export: typo fix
Diffstat (limited to 'plugins/Msg_Export')
-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"");
|