mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-03-04 13:27:50 +00:00
Fix build on Linux.
This commit is contained in:
parent
7f5e646db5
commit
a5483a5113
@ -3399,9 +3399,6 @@ void HistoryWidget::checkSupportPreload(bool force) {
|
|||||||
const auto maxId = 0;
|
const auto maxId = 0;
|
||||||
const auto minId = 0;
|
const auto minId = 0;
|
||||||
const auto historyHash = uint64(0);
|
const auto historyHash = uint64(0);
|
||||||
const auto tmp = history->peer->name.toStdString();
|
|
||||||
const auto tmp2 = _history->peer->name.toStdString();
|
|
||||||
LOG(("PRELOADING FROM: %1 FOR: %2").arg(_history->peer->name).arg(history->peer->name));
|
|
||||||
const auto type = Data::Histories::RequestType::History;
|
const auto type = Data::Histories::RequestType::History;
|
||||||
auto &histories = history->owner().histories();
|
auto &histories = history->owner().histories();
|
||||||
_supportPreloadRequest = histories.sendRequest(history, type, [=](Fn<void()> finish) {
|
_supportPreloadRequest = histories.sendRequest(history, type, [=](Fn<void()> finish) {
|
||||||
@ -3417,7 +3414,6 @@ void HistoryWidget::checkSupportPreload(bool force) {
|
|||||||
)).done([=](const MTPmessages_Messages &result) {
|
)).done([=](const MTPmessages_Messages &result) {
|
||||||
if (const auto around = history->loadAroundId()) {
|
if (const auto around = history->loadAroundId()) {
|
||||||
if (around != offsetId) {
|
if (around != offsetId) {
|
||||||
LOG(("RE-PRELOADING FOR: %1").arg(history->peer->name));
|
|
||||||
_supportPreloadRequest = 0;
|
_supportPreloadRequest = 0;
|
||||||
_supportPreloadHistory = nullptr;
|
_supportPreloadHistory = nullptr;
|
||||||
crl::on_main(this, [=] { checkSupportPreload(); });
|
crl::on_main(this, [=] { checkSupportPreload(); });
|
||||||
@ -3426,7 +3422,6 @@ void HistoryWidget::checkSupportPreload(bool force) {
|
|||||||
history->clear(History::ClearType::Unload);
|
history->clear(History::ClearType::Unload);
|
||||||
history->getReadyFor(ShowAtUnreadMsgId);
|
history->getReadyFor(ShowAtUnreadMsgId);
|
||||||
} else if (offsetId) {
|
} else if (offsetId) {
|
||||||
LOG(("RE-PRELOADING FOR: %1").arg(history->peer->name));
|
|
||||||
_supportPreloadRequest = 0;
|
_supportPreloadRequest = 0;
|
||||||
_supportPreloadHistory = nullptr;
|
_supportPreloadHistory = nullptr;
|
||||||
crl::on_main(this, [=] { checkSupportPreload(); });
|
crl::on_main(this, [=] { checkSupportPreload(); });
|
||||||
@ -3435,9 +3430,6 @@ void HistoryWidget::checkSupportPreload(bool force) {
|
|||||||
history->clear(History::ClearType::Unload);
|
history->clear(History::ClearType::Unload);
|
||||||
history->getReadyFor(ShowAtTheEndMsgId);
|
history->getReadyFor(ShowAtTheEndMsgId);
|
||||||
}
|
}
|
||||||
LOG(("PRELOADED FOR: %1").arg(history->peer->name));
|
|
||||||
auto count = 0;
|
|
||||||
const QVector<MTPMessage> emptyList, *histList = &emptyList;
|
|
||||||
result.match([](const MTPDmessages_messagesNotModified&) {
|
result.match([](const MTPDmessages_messagesNotModified&) {
|
||||||
}, [&](const auto &data) {
|
}, [&](const auto &data) {
|
||||||
history->owner().processUsers(data.vusers());
|
history->owner().processUsers(data.vusers());
|
||||||
|
2
cmake
2
cmake
@ -1 +1 @@
|
|||||||
Subproject commit 54e750cca08f527368cab599bf6022d485e040b3
|
Subproject commit 3604a7f02396970bb83b7d00dabfafa00659fbe7
|
Loading…
Reference in New Issue
Block a user