mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge pull request #327 from master-passeli/mic_mute_segfault
check if call is active before mute
This commit is contained in:
commit
57237f450e
|
@ -273,7 +273,9 @@ void Core::decreaseVideoBusyness()
|
|||
|
||||
void Core::micMuteToggle(int callId)
|
||||
{
|
||||
calls[callId].muteMic = !calls[callId].muteMic;
|
||||
if (calls[callId].active) {
|
||||
calls[callId].muteMic = !calls[callId].muteMic;
|
||||
}
|
||||
}
|
||||
|
||||
void Core::onAvCancel(void* _toxav, int32_t callId, void* core)
|
||||
|
|
Loading…
Reference in New Issue
Block a user