diff options
author | George Hazan <ghazan@miranda.im> | 2020-02-19 21:45:51 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-02-19 21:45:51 +0300 |
commit | 335e9c37736b04411d79abb6bb5a62a1f7166c4a (patch) | |
tree | d7ba6a2e6cf2b8f724d36bf14cf5e66a4c60ed1d /protocols/Facebook | |
parent | 4bf8e7a50e7168ec0418301d2c10f748f24dd8ad (diff) |
fixes #2224 (Facebook - each group chat message as a new conversation)
Diffstat (limited to 'protocols/Facebook')
-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> |