summaryrefslogtreecommitdiff
path: root/protocols/Discord
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Discord')
-rw-r--r--protocols/Discord/src/proto.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/protocols/Discord/src/proto.cpp b/protocols/Discord/src/proto.cpp
index 3eb222f68e..b346de4d88 100644
--- a/protocols/Discord/src/proto.cpp
+++ b/protocols/Discord/src/proto.cpp
@@ -92,6 +92,13 @@ CDiscordProto::CDiscordProto(const char *proto_name, const wchar_t *username) :
dbEventType.eventIcon = g_plugin.getIconHandle(IDI_VOICE_ENDED);
DbEvent_RegisterType(&dbEventType);
+ // Groupchat initialization
+ GCREGISTER gcr = {};
+ gcr.dwFlags = GC_TYPNOTIF | GC_CHANMGR;
+ gcr.ptszDispName = m_tszUserName;
+ gcr.pszModule = m_szModuleName;
+ Chat_Register(&gcr);
+
// Network initialization
CMStringW descr;
NETLIBUSER nlu = {};
@@ -145,12 +152,6 @@ void CDiscordProto::OnModulesLoaded()
else pNew->channelId = getId(hContact, DB_KEY_CHANNELID);
}
- GCREGISTER gcr = {};
- gcr.dwFlags = GC_TYPNOTIF | GC_CHANMGR;
- gcr.ptszDispName = m_tszUserName;
- gcr.pszModule = m_szModuleName;
- Chat_Register(&gcr);
-
// Clist
Clist_GroupCreate(0, m_wszDefaultGroup);