diff options
Diffstat (limited to 'protocols/Facebook/src/server.cpp')
-rw-r--r-- | protocols/Facebook/src/server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Facebook/src/server.cpp b/protocols/Facebook/src/server.cpp index b4adb46d35..17f0ace5c9 100644 --- a/protocols/Facebook/src/server.cpp +++ b/protocols/Facebook/src/server.cpp @@ -156,9 +156,9 @@ int FacebookProto::RefreshContacts() CMStringW wszPart(nn["part"].as_mstring()); int offset = nn["offset"].as_int(), length = nn["length"].as_int(); if (wszPart == L"first") - setWString(hContact, DBKEY_FIRST_NAME, wszName.Mid(offset, length)); + setWString(hContact, "FirstName", wszName.Mid(offset, length)); else if (wszPart == L"last") - setWString(hContact, DBKEY_LAST_NAME, wszName.Mid(offset, length)); + setWString(hContact, "LastName", wszName.Mid(offset, length)); } } |