diff options
author | George Hazan <george.hazan@gmail.com> | 2024-06-12 19:04:36 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-06-12 19:04:36 +0300 |
commit | 0a2fc31cea661d4bc159b10c5c2ee3b6fee2bd94 (patch) | |
tree | 939614f50d4ca209bbb2984e59670e8f91fee73c /protocols/Discord/src/voice.cpp | |
parent | 67908297c933d9c06ddd41dec02d2ff7ed832837 (diff) |
Discord: voice initialization thread
Diffstat (limited to 'protocols/Discord/src/voice.cpp')
-rw-r--r-- | protocols/Discord/src/voice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Discord/src/voice.cpp b/protocols/Discord/src/voice.cpp index fad1728896..fee0509848 100644 --- a/protocols/Discord/src/voice.cpp +++ b/protocols/Discord/src/voice.cpp @@ -57,7 +57,7 @@ void CDiscordProto::VoiceChannelConnect(MCONTACT hContact) if (pGuild->pVoiceCall)
return;
- pGuild->pVoiceCall = new CDiscordVoiceCall();
+ pGuild->pVoiceCall = new CDiscordVoiceCall(this);
pGuild->pVoiceCall->guildId = pGuild->m_id;
pGuild->pVoiceCall->channelId = channelId;
}
|