From 1b19e870c07de8c4f80e8ac130a88f0834244a4d Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 3 Dec 2018 10:41:34 +0400 Subject: [PATCH] Fix crash in channel setup box. --- .../SourceFiles/boxes/add_contact_box.cpp | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/Telegram/SourceFiles/boxes/add_contact_box.cpp b/Telegram/SourceFiles/boxes/add_contact_box.cpp index 46e914a47..569a910b3 100644 --- a/Telegram/SourceFiles/boxes/add_contact_box.cpp +++ b/Telegram/SourceFiles/boxes/add_contact_box.cpp @@ -773,26 +773,25 @@ void SetupChannelBox::updateSelected(const QPoint &cursorGlobalPosition) { } void SetupChannelBox::save() { - if (_privacyGroup->value() == Privacy::Private) { + if (_saveRequestId) { + return; + } else if (_privacyGroup->value() == Privacy::Private) { if (_existing) { _sentUsername = QString(); _saveRequestId = MTP::send(MTPchannels_UpdateUsername(_channel->inputChannel, MTP_string(_sentUsername)), rpcDone(&SetupChannelBox::onUpdateDone), rpcFail(&SetupChannelBox::onUpdateFail)); } else { closeBox(); } + } else { + const auto link = _link->text().trimmed(); + if (link.isEmpty()) { + _link->setFocus(); + _link->showError(); + return; + } + _sentUsername = link; + _saveRequestId = MTP::send(MTPchannels_UpdateUsername(_channel->inputChannel, MTP_string(_sentUsername)), rpcDone(&SetupChannelBox::onUpdateDone), rpcFail(&SetupChannelBox::onUpdateFail)); } - - if (_saveRequestId) return; - - QString link = _link->text().trimmed(); - if (link.isEmpty()) { - _link->setFocus(); - _link->showError(); - return; - } - - _sentUsername = link; - _saveRequestId = MTP::send(MTPchannels_UpdateUsername(_channel->inputChannel, MTP_string(_sentUsername)), rpcDone(&SetupChannelBox::onUpdateDone), rpcFail(&SetupChannelBox::onUpdateFail)); } void SetupChannelBox::handleChange() {