Closed beta version: 1.3.13.2: Fix broken beta.

This commit is contained in:
John Preston 2018-08-14 22:21:15 +03:00
parent dac0471157
commit a8da0c18ee
1 changed files with 9 additions and 1 deletions

View File

@ -4506,6 +4506,9 @@ void _writePeer(QDataStream &stream, PeerData *peer) {
PeerData *_readPeer(int streamAppVersion, QDataStream &stream) {
quint64 peerId = 0, photoId = 0;
stream >> peerId >> photoId;
if (!peerId) {
return nullptr;
}
auto photoLoc = Serialize::readStorageImageLocation(
streamAppVersion,
@ -4721,7 +4724,12 @@ void readRecentHashtagsAndBots() {
const auto peer = _readPeer(
hashtags.version,
hashtags.stream);
if (peer && peer->isUser() && peer->asUser()->botInfo && !peer->asUser()->botInfo->inlinePlaceholder.isEmpty() && !peer->asUser()->username.isEmpty()) {
if (!peer) {
return; // Broken data.
} else if (peer->isUser()
&& peer->asUser()->botInfo
&& !peer->asUser()->botInfo->inlinePlaceholder.isEmpty()
&& !peer->asUser()->username.isEmpty()) {
bots.push_back(peer->asUser());
}
}