2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Apply new group call from new service message.

This commit is contained in:
John Preston
2020-11-27 13:35:16 +03:00
parent 2ac0a2a10b
commit 8618fe41ee
6 changed files with 42 additions and 43 deletions

View File

@@ -1051,6 +1051,13 @@ void History::applyServiceChanges(
});
}
} break;
case mtpc_messageActionGroupCall: {
if (const auto channel = peer->asChannel()) {
const auto &d = action.c_messageActionGroupCall();
channel->setCall(d.vcall());
}
} break;
}
}