mirror of https://github.com/procxx/kepka.git
Don't replace local with server last message.
This commit is contained in:
parent
32d93e2651
commit
c04f3a7048
|
@ -1937,8 +1937,8 @@ void History::setFolder(
|
||||||
not_null<Data::Folder*> folder,
|
not_null<Data::Folder*> folder,
|
||||||
HistoryItem *folderDialogItem) {
|
HistoryItem *folderDialogItem) {
|
||||||
setFolderPointer(folder);
|
setFolderPointer(folder);
|
||||||
if (folderDialogItem && _lastMessage != folderDialogItem) {
|
if (folderDialogItem) {
|
||||||
setLastMessage(folderDialogItem);
|
setLastServerMessage(folderDialogItem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2369,16 +2369,19 @@ void History::clearSharedMedia() {
|
||||||
//}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void History::setLastServerMessage(HistoryItem *item) {
|
||||||
|
if (_lastMessage
|
||||||
|
&& *_lastMessage
|
||||||
|
&& !IsServerMsgId((*_lastMessage)->id)
|
||||||
|
&& (!item || (*_lastMessage)->date() > item->date())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setLastMessage(item);
|
||||||
|
}
|
||||||
|
|
||||||
void History::setLastMessage(HistoryItem *item) {
|
void History::setLastMessage(HistoryItem *item) {
|
||||||
if (_lastMessage) {
|
if (_lastMessage && *_lastMessage == item) {
|
||||||
if (*_lastMessage == item) {
|
return;
|
||||||
return;
|
|
||||||
} else if (*_lastMessage
|
|
||||||
&& item
|
|
||||||
&& !IsServerMsgId((*_lastMessage)->id)
|
|
||||||
&& (*_lastMessage)->date() > item->date()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
_lastMessage = item;
|
_lastMessage = item;
|
||||||
if (peer->migrateTo()) {
|
if (peer->migrateTo()) {
|
||||||
|
@ -2766,12 +2769,12 @@ void History::applyDialogTopMessage(MsgId topMessageId) {
|
||||||
channelId(),
|
channelId(),
|
||||||
topMessageId);
|
topMessageId);
|
||||||
if (const auto item = owner().message(itemId)) {
|
if (const auto item = owner().message(itemId)) {
|
||||||
setLastMessage(item);
|
setLastServerMessage(item);
|
||||||
} else {
|
} else {
|
||||||
setLastMessage(nullptr);
|
setLastServerMessage(nullptr);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setLastMessage(nullptr);
|
setLastServerMessage(nullptr);
|
||||||
}
|
}
|
||||||
if (clearUnreadOnClientSide()) {
|
if (clearUnreadOnClientSide()) {
|
||||||
setUnreadCount(0);
|
setUnreadCount(0);
|
||||||
|
@ -3167,7 +3170,7 @@ void History::clear(ClearType type) {
|
||||||
setUnreadCount(0);
|
setUnreadCount(0);
|
||||||
}
|
}
|
||||||
if (type == ClearType::DeleteChat) {
|
if (type == ClearType::DeleteChat) {
|
||||||
setLastMessage(nullptr);
|
setLastServerMessage(nullptr);
|
||||||
} else if (_lastMessage && *_lastMessage) {
|
} else if (_lastMessage && *_lastMessage) {
|
||||||
if (IsServerMsgId((*_lastMessage)->id)) {
|
if (IsServerMsgId((*_lastMessage)->id)) {
|
||||||
(*_lastMessage)->applyEditionToHistoryCleared();
|
(*_lastMessage)->applyEditionToHistoryCleared();
|
||||||
|
|
|
@ -455,6 +455,7 @@ private:
|
||||||
// After adding a new history slice check lastMessage / loadedAtBottom.
|
// After adding a new history slice check lastMessage / loadedAtBottom.
|
||||||
void checkLastMessage();
|
void checkLastMessage();
|
||||||
void setLastMessage(HistoryItem *item);
|
void setLastMessage(HistoryItem *item);
|
||||||
|
void setLastServerMessage(HistoryItem *item);
|
||||||
|
|
||||||
void refreshChatListMessage();
|
void refreshChatListMessage();
|
||||||
void setChatListMessage(HistoryItem *item);
|
void setChatListMessage(HistoryItem *item);
|
||||||
|
|
|
@ -145,22 +145,6 @@ void ActivateWindow(not_null<Window::SessionController*> controller) {
|
||||||
Ui::ActivateWindowDelayed(window);
|
Ui::ActivateWindowDelayed(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ShowHistoryEndInsteadOfUnread(
|
|
||||||
not_null<Data::Session*> session,
|
|
||||||
PeerId peerId) {
|
|
||||||
// Ignore unread messages in case of unread changelogs.
|
|
||||||
// We must show this history at end for the changelog to be visible.
|
|
||||||
if (peerId != PeerData::kServiceNotificationsId) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
const auto history = session->history(peerId);
|
|
||||||
if (!history->unreadCount()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
const auto last = history->lastMessage();
|
|
||||||
return (last != nullptr) && !IsServerMsgId(last->id);
|
|
||||||
}
|
|
||||||
|
|
||||||
object_ptr<Ui::FlatButton> SetupDiscussButton(
|
object_ptr<Ui::FlatButton> SetupDiscussButton(
|
||||||
not_null<QWidget*> parent,
|
not_null<QWidget*> parent,
|
||||||
not_null<Window::SessionController*> controller) {
|
not_null<Window::SessionController*> controller) {
|
||||||
|
@ -1646,9 +1630,6 @@ void HistoryWidget::showHistory(
|
||||||
const auto startBot = (showAtMsgId == ShowAndStartBotMsgId);
|
const auto startBot = (showAtMsgId == ShowAndStartBotMsgId);
|
||||||
if (startBot) {
|
if (startBot) {
|
||||||
showAtMsgId = ShowAtTheEndMsgId;
|
showAtMsgId = ShowAtTheEndMsgId;
|
||||||
} else if ((showAtMsgId == ShowAtUnreadMsgId)
|
|
||||||
&& ShowHistoryEndInsteadOfUnread(&session().data(), peerId)) {
|
|
||||||
showAtMsgId = ShowAtTheEndMsgId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
clearHighlightMessages();
|
clearHighlightMessages();
|
||||||
|
|
Loading…
Reference in New Issue