2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Don't leave call when joining other call from other device.

This commit is contained in:
John Preston
2020-12-06 18:12:24 +04:00
parent 78067fd996
commit bfce832a7a

View File

@@ -411,7 +411,8 @@ void Instance::handleGroupCallUpdate(
existing->applyUpdate(update);
}
if (_currentGroupCall
&& (&_currentGroupCall->channel()->session() == session)) {
&& (&_currentGroupCall->channel()->session() == session)
&& (_currentGroupCall->id() == callId)) {
_currentGroupCall->handleUpdate(update);
}
}