mirror of https://github.com/procxx/kepka.git
Fix crash in group creation.
This commit is contained in:
parent
e2c1c4c8de
commit
56c4d164f3
|
@ -13,6 +13,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include <QReadWriteLock>
|
#include <QReadWriteLock>
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
|
#include <windows.h>
|
||||||
#elif defined Q_OS_MAC
|
#elif defined Q_OS_MAC
|
||||||
#include <mach/mach_time.h>
|
#include <mach/mach_time.h>
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -58,6 +58,48 @@ bool IsValidPhone(QString phone) {
|
||||||
|| phone == qsl("4242")));
|
|| phone == qsl("4242")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ChatCreateDone(
|
||||||
|
not_null<Window::SessionNavigation*> navigation,
|
||||||
|
QImage image,
|
||||||
|
const MTPUpdates &updates) {
|
||||||
|
navigation->session().api().applyUpdates(updates);
|
||||||
|
|
||||||
|
auto success = base::make_optional(&updates)
|
||||||
|
| [](auto updates) -> std::optional<const QVector<MTPChat>*> {
|
||||||
|
switch (updates->type()) {
|
||||||
|
case mtpc_updates:
|
||||||
|
return &updates->c_updates().vchats().v;
|
||||||
|
case mtpc_updatesCombined:
|
||||||
|
return &updates->c_updatesCombined().vchats().v;
|
||||||
|
}
|
||||||
|
LOG(("API Error: unexpected update cons %1 "
|
||||||
|
"(GroupInfoBox::creationDone)").arg(updates->type()));
|
||||||
|
return std::nullopt;
|
||||||
|
}
|
||||||
|
| [](auto chats) {
|
||||||
|
return (!chats->empty()
|
||||||
|
&& chats->front().type() == mtpc_chat)
|
||||||
|
? base::make_optional(chats)
|
||||||
|
: std::nullopt;
|
||||||
|
}
|
||||||
|
| [&](auto chats) {
|
||||||
|
return navigation->session().data().chat(
|
||||||
|
chats->front().c_chat().vid().v);
|
||||||
|
}
|
||||||
|
| [&](not_null<ChatData*> chat) {
|
||||||
|
if (!image.isNull()) {
|
||||||
|
chat->session().api().uploadPeerPhoto(
|
||||||
|
chat,
|
||||||
|
std::move(image));
|
||||||
|
}
|
||||||
|
Ui::showPeerHistory(chat, ShowAtUnreadMsgId);
|
||||||
|
};
|
||||||
|
if (!success) {
|
||||||
|
LOG(("API Error: chat not found in updates "
|
||||||
|
"(ContactsBox::creationDone)"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
style::InputField CreateBioFieldStyle() {
|
style::InputField CreateBioFieldStyle() {
|
||||||
|
@ -525,44 +567,10 @@ void GroupInfoBox::createGroup(
|
||||||
MTP_string(title)
|
MTP_string(title)
|
||||||
)).done([=](const MTPUpdates &result) {
|
)).done([=](const MTPUpdates &result) {
|
||||||
auto image = _photo->takeResultImage();
|
auto image = _photo->takeResultImage();
|
||||||
Ui::hideLayer();
|
const auto navigation = _navigation;
|
||||||
|
|
||||||
_navigation->session().api().applyUpdates(result);
|
Ui::hideLayer(); // Destroys 'this'.
|
||||||
|
ChatCreateDone(navigation, std::move(image), result);
|
||||||
auto success = base::make_optional(&result)
|
|
||||||
| [](auto updates) -> std::optional<const QVector<MTPChat>*> {
|
|
||||||
switch (updates->type()) {
|
|
||||||
case mtpc_updates:
|
|
||||||
return &updates->c_updates().vchats().v;
|
|
||||||
case mtpc_updatesCombined:
|
|
||||||
return &updates->c_updatesCombined().vchats().v;
|
|
||||||
}
|
|
||||||
LOG(("API Error: unexpected update cons %1 "
|
|
||||||
"(GroupInfoBox::creationDone)").arg(updates->type()));
|
|
||||||
return std::nullopt;
|
|
||||||
}
|
|
||||||
| [](auto chats) {
|
|
||||||
return (!chats->empty()
|
|
||||||
&& chats->front().type() == mtpc_chat)
|
|
||||||
? base::make_optional(chats)
|
|
||||||
: std::nullopt;
|
|
||||||
}
|
|
||||||
| [&](auto chats) {
|
|
||||||
return _navigation->session().data().chat(
|
|
||||||
chats->front().c_chat().vid().v);
|
|
||||||
}
|
|
||||||
| [&](not_null<ChatData*> chat) {
|
|
||||||
if (!image.isNull()) {
|
|
||||||
chat->session().api().uploadPeerPhoto(
|
|
||||||
chat,
|
|
||||||
std::move(image));
|
|
||||||
}
|
|
||||||
Ui::showPeerHistory(chat, ShowAtUnreadMsgId);
|
|
||||||
};
|
|
||||||
if (!success) {
|
|
||||||
LOG(("API Error: chat not found in updates "
|
|
||||||
"(ContactsBox::creationDone)"));
|
|
||||||
}
|
|
||||||
}).fail([=](const RPCError &error) {
|
}).fail([=](const RPCError &error) {
|
||||||
_creationRequestId = 0;
|
_creationRequestId = 0;
|
||||||
if (error.type() == qstr("NO_CHAT_TITLE")) {
|
if (error.type() == qstr("NO_CHAT_TITLE")) {
|
||||||
|
|
Loading…
Reference in New Issue