summaryrefslogtreecommitdiff
path: root/protocols/Discord/src/voice.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-06-12 19:04:36 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-06-12 19:04:36 +0300
commit0a2fc31cea661d4bc159b10c5c2ee3b6fee2bd94 (patch)
tree939614f50d4ca209bbb2984e59670e8f91fee73c /protocols/Discord/src/voice.cpp
parent67908297c933d9c06ddd41dec02d2ff7ed832837 (diff)
Discord: voice initialization thread
Diffstat (limited to 'protocols/Discord/src/voice.cpp')
-rw-r--r--protocols/Discord/src/voice.cpp2
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;
}