mirror of https://github.com/procxx/kepka.git
Always pass all users to add group member box.
This commit is contained in:
parent
90f5f7dded
commit
a403ad7d37
|
@ -332,17 +332,22 @@ void Members::updateHeaderControlsGeometry(int newWidth) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Members::addMember() {
|
void Members::addMember() {
|
||||||
if (auto chat = _peer->asChat()) {
|
if (const auto chat = _peer->asChat()) {
|
||||||
if (chat->count >= Global::ChatSizeMax() && chat->amCreator()) {
|
if (chat->count >= Global::ChatSizeMax() && chat->amCreator()) {
|
||||||
Ui::show(Box<ConvertToSupergroupBox>(chat));
|
Ui::show(Box<ConvertToSupergroupBox>(chat));
|
||||||
} else {
|
} else {
|
||||||
AddParticipantsBoxController::Start(chat);
|
AddParticipantsBoxController::Start(chat);
|
||||||
}
|
}
|
||||||
} else if (auto channel = _peer->asChannel()) {
|
} else if (const auto channel = _peer->asChannel()) {
|
||||||
if (channel->mgInfo) {
|
const auto state = _listController->saveState();
|
||||||
auto &participants = channel->mgInfo->lastParticipants;
|
const auto users = ranges::view::all(
|
||||||
AddParticipantsBoxController::Start(channel, { participants.cbegin(), participants.cend() });
|
state->list
|
||||||
}
|
) | ranges::view::transform([](not_null<PeerData*> peer) {
|
||||||
|
return peer->asUser();
|
||||||
|
});
|
||||||
|
AddParticipantsBoxController::Start(
|
||||||
|
channel,
|
||||||
|
{ users.begin(), users.end() });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -496,13 +496,8 @@ void ShowForwardMessagesBox(
|
||||||
}
|
}
|
||||||
|
|
||||||
void PeerMenuAddChannelMembers(not_null<ChannelData*> channel) {
|
void PeerMenuAddChannelMembers(not_null<ChannelData*> channel) {
|
||||||
if (channel->isMegagroup()) {
|
if (!channel->isMegagroup()
|
||||||
auto &participants = channel->mgInfo->lastParticipants;
|
&& channel->membersCount() >= Global::ChatSizeMax()) {
|
||||||
AddParticipantsBoxController::Start(
|
|
||||||
channel,
|
|
||||||
{ participants.cbegin(), participants.cend() });
|
|
||||||
return;
|
|
||||||
} else if (channel->membersCount() >= Global::ChatSizeMax()) {
|
|
||||||
Ui::show(
|
Ui::show(
|
||||||
Box<MaxInviteBox>(channel),
|
Box<MaxInviteBox>(channel),
|
||||||
LayerOption::KeepOther);
|
LayerOption::KeepOther);
|
||||||
|
|
Loading…
Reference in New Issue