Rename the method to endGroupCall.

This commit is contained in:
levlam 2021-12-23 13:00:05 +03:00
parent 461b312369
commit dd8b1169b1
4 changed files with 6 additions and 6 deletions

View File

@ -5161,8 +5161,8 @@ loadGroupCallParticipants group_call_id:int32 limit:int32 = Ok;
//@description Leaves a group call @group_call_id Group call identifier //@description Leaves a group call @group_call_id Group call identifier
leaveGroupCall group_call_id:int32 = Ok; leaveGroupCall group_call_id:int32 = Ok;
//@description Discards a group call. Requires groupCall.can_be_managed @group_call_id Group call identifier //@description Ends a group call. Requires groupCall.can_be_managed @group_call_id Group call identifier
discardGroupCall group_call_id:int32 = Ok; endGroupCall group_call_id:int32 = Ok;
//@description Returns a file with a segment of a group call stream in a modified OGG format for audio or MPEG-4 format for video //@description Returns a file with a segment of a group call stream in a modified OGG format for audio or MPEG-4 format for video
//@group_call_id Group call identifier //@group_call_id Group call identifier

View File

@ -5856,7 +5856,7 @@ void Td::on_request(uint64 id, const td_api::leaveGroupCall &request) {
group_call_manager_->leave_group_call(GroupCallId(request.group_call_id_), std::move(promise)); group_call_manager_->leave_group_call(GroupCallId(request.group_call_id_), std::move(promise));
} }
void Td::on_request(uint64 id, const td_api::discardGroupCall &request) { void Td::on_request(uint64 id, const td_api::endGroupCall &request) {
CHECK_IS_USER(); CHECK_IS_USER();
CREATE_OK_REQUEST_PROMISE(); CREATE_OK_REQUEST_PROMISE();
group_call_manager_->discard_group_call(GroupCallId(request.group_call_id_), std::move(promise)); group_call_manager_->discard_group_call(GroupCallId(request.group_call_id_), std::move(promise));

View File

@ -793,7 +793,7 @@ class Td final : public Actor {
void on_request(uint64 id, const td_api::leaveGroupCall &request); void on_request(uint64 id, const td_api::leaveGroupCall &request);
void on_request(uint64 id, const td_api::discardGroupCall &request); void on_request(uint64 id, const td_api::endGroupCall &request);
void on_request(uint64 id, td_api::getGroupCallStreamSegment &request); void on_request(uint64 id, td_api::getGroupCallStreamSegment &request);

View File

@ -2985,8 +2985,8 @@ class CliClient final : public Actor {
td_api::make_object<td_api::loadGroupCallParticipants>(as_group_call_id(group_call_id), as_limit(limit))); td_api::make_object<td_api::loadGroupCallParticipants>(as_group_call_id(group_call_id), as_limit(limit)));
} else if (op == "lgc") { } else if (op == "lgc") {
send_request(td_api::make_object<td_api::leaveGroupCall>(as_group_call_id(args))); send_request(td_api::make_object<td_api::leaveGroupCall>(as_group_call_id(args)));
} else if (op == "dgc") { } else if (op == "egc") {
send_request(td_api::make_object<td_api::discardGroupCall>(as_group_call_id(args))); send_request(td_api::make_object<td_api::endGroupCall>(as_group_call_id(args)));
} else if (op == "rpcil") { } else if (op == "rpcil") {
const string &chat_id = args; const string &chat_id = args;
send_request(td_api::make_object<td_api::replacePrimaryChatInviteLink>(as_chat_id(chat_id))); send_request(td_api::make_object<td_api::replacePrimaryChatInviteLink>(as_chat_id(chat_id)));