mirror of https://github.com/procxx/kepka.git
Provide user phone on auth session create.
We need the phone in the constructor to switch on the support mode.
This commit is contained in:
parent
e712a51833
commit
b322f986a8
|
@ -463,14 +463,21 @@ void Messenger::startMtp() {
|
|||
}
|
||||
|
||||
if (_private->authSessionUserId) {
|
||||
QDataStream peekStream(_private->authSessionUserSerialized);
|
||||
const auto phone = Serialize::peekUserPhone(
|
||||
_private->authSessionUserStreamVersion,
|
||||
peekStream);
|
||||
const auto flags = MTPDuser::Flag::f_self | (phone.isEmpty()
|
||||
? MTPDuser::Flag()
|
||||
: MTPDuser::Flag::f_phone);
|
||||
authSessionCreate(MTP_user(
|
||||
MTP_flags(MTPDuser::Flag::f_self),
|
||||
MTP_flags(flags),
|
||||
MTP_int(base::take(_private->authSessionUserId)),
|
||||
MTPlong(), // access_hash
|
||||
MTPstring(), // first_name
|
||||
MTPstring(), // last_name
|
||||
MTPstring(), // username
|
||||
MTPstring(), // phone
|
||||
MTP_string(phone),
|
||||
MTPUserProfilePhoto(),
|
||||
MTPUserStatus(),
|
||||
MTPint(), // bot_info_version
|
||||
|
|
|
@ -260,4 +260,19 @@ PeerData *readPeer(int streamAppVersion, QDataStream &stream) {
|
|||
return result;
|
||||
}
|
||||
|
||||
QString peekUserPhone(int streamAppVersion, QDataStream &stream) {
|
||||
quint64 peerId = 0, photoId = 0;
|
||||
stream >> peerId >> photoId;
|
||||
if (!peerId || !peerIsUser(peerId)) {
|
||||
return QString();
|
||||
}
|
||||
|
||||
const auto photoLoc = readStorageImageLocation(
|
||||
streamAppVersion,
|
||||
stream);
|
||||
QString first, last, phone;
|
||||
stream >> first >> last >> phone;
|
||||
return phone;
|
||||
}
|
||||
|
||||
} // namespace Serialize
|
||||
|
|
|
@ -110,5 +110,6 @@ inline MTP::AuthKey::Data read<MTP::AuthKey::Data>(QDataStream &stream) {
|
|||
uint32 peerSize(not_null<PeerData*> peer);
|
||||
void writePeer(QDataStream &stream, PeerData *peer);
|
||||
PeerData *readPeer(int streamAppVersion, QDataStream &stream);
|
||||
QString peekUserPhone(int streamAppVersion, QDataStream &stream);
|
||||
|
||||
} // namespace Serialize
|
||||
|
|
Loading…
Reference in New Issue