Show error when trying to delete a large channel.

Server doesn't allow to delete a channel with more than 1000 users.
This commit is contained in:
John Preston 2017-07-13 19:12:20 +03:00
parent c7e63ffef5
commit bd1547cd5e
2 changed files with 12 additions and 0 deletions

View File

@ -921,6 +921,10 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
"lng_cant_invite_banned" = "Sorry, only admin can add this user.";
"lng_cant_invite_privacy" = "Sorry, you cannot add this user to groups because of their privacy settings.";
"lng_cant_invite_privacy_channel" = "Sorry, you cannot add this user to channels because of their privacy settings.";
"lng_cant_delete_group#one" = "Sorry, it is currently not possible to manually delete communities that have more than {count} member. Please contact Telegram support if you would like to delete this group.";
"lng_cant_delete_group#other" = "Sorry, it is currently not possible to manually delete communities that have more than {count} members. Please contact Telegram support if you would like to delete this group.";
"lng_cant_delete_channel#one" = "Sorry, it is currently not possible to manually delete communities that have more than {count} member. Please contact Telegram support if you would like to delete this channel.";
"lng_cant_delete_channel#other" = "Sorry, it is currently not possible to manually delete communities that have more than {count} members. Please contact Telegram support if you would like to delete this channel.";
"lng_cant_do_this" = "Sorry, this action is unavailable.";
"lng_send_button" = "Send";

View File

@ -35,6 +35,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
namespace Profile {
constexpr auto kEnableSearchMembersAfterCount = 50;
constexpr auto kMaxChannelMembersDeleteAllowed = 1000;
using UpdateFlag = Notify::PeerUpdate::Flag;
@ -330,6 +331,13 @@ void ActionsWidget::onUpgradeToSupergroup() {
}
void ActionsWidget::onDeleteChannel() {
if (auto channel = peer()->asChannel()) {
if (channel->membersCount() > kMaxChannelMembersDeleteAllowed) {
Ui::show(Box<InformBox>((channel->isMegagroup() ? lng_cant_delete_group : lng_cant_delete_channel)(lt_count, kMaxChannelMembersDeleteAllowed)));
return;
}
}
auto text = lang(peer()->isMegagroup() ? lng_sure_delete_group : lng_sure_delete_channel);
Ui::show(Box<ConfirmBox>(text, lang(lng_box_delete), st::attentionBoxButton, base::lambda_guarded(this, [this] {
Ui::hideLayer();