diff options
Diffstat (limited to 'protocols/Facebook/src')
-rw-r--r-- | protocols/Facebook/src/proto.cpp | 2 | ||||
-rw-r--r-- | protocols/Facebook/src/version.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Facebook/src/proto.cpp b/protocols/Facebook/src/proto.cpp index ff307986a9..c59fca360b 100644 --- a/protocols/Facebook/src/proto.cpp +++ b/protocols/Facebook/src/proto.cpp @@ -50,7 +50,7 @@ FacebookProto::FacebookProto(const char *proto_name, const wchar_t *username) : for (auto &cc : AccContacts()) { CMStringA szId(getMStringA(cc, DBKEY_ID)); if (!szId.IsEmpty()) - m_users.insert(new FacebookUser(_atoi64(szId), cc)); + m_users.insert(new FacebookUser(_atoi64(szId), cc, isChatRoom(cc))); } // to upgrade previous settings diff --git a/protocols/Facebook/src/version.h b/protocols/Facebook/src/version.h index 95ece08775..429352fadb 100644 --- a/protocols/Facebook/src/version.h +++ b/protocols/Facebook/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0 #define __MINOR_VERSION 1 #define __RELEASE_NUM 0 -#define __BUILD_NUM 3 +#define __BUILD_NUM 4 #include <stdver.h> |