1
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-04-01 23:00:58 +00:00

Fix dialogs list creation in support mode.

This commit is contained in:
John Preston 2019-04-30 14:01:34 +04:00
parent 39008bf6fe
commit be64f18e96

View File

@ -57,6 +57,10 @@ void Entry::cachePinnedIndex(int index) {
if (_pinnedIndex != index) { if (_pinnedIndex != index) {
const auto wasPinned = isPinnedDialog(); const auto wasPinned = isPinnedDialog();
_pinnedIndex = index; _pinnedIndex = index;
if (session().supportMode()) {
// Force reorder in support mode.
_sortKeyInChatList = 0;
}
updateChatListSortPosition(); updateChatListSortPosition();
updateChatListEntry(); updateChatListEntry();
if (wasPinned != isPinnedDialog()) { if (wasPinned != isPinnedDialog()) {
@ -81,9 +85,9 @@ bool Entry::needUpdateInChatList() const {
} }
void Entry::updateChatListSortPosition() { void Entry::updateChatListSortPosition() {
if (Auth().supportMode() if (session().supportMode()
&& _sortKeyInChatList != 0 && _sortKeyInChatList != 0
&& Auth().settings().supportFixChatsOrder()) { && session().settings().supportFixChatsOrder()) {
updateChatListEntry(); updateChatListEntry();
return; return;
} }
@ -95,6 +99,8 @@ void Entry::updateChatListSortPosition() {
: DialogPosFromDate(adjustedChatListTimeId()); : DialogPosFromDate(adjustedChatListTimeId());
if (needUpdateInChatList()) { if (needUpdateInChatList()) {
setChatListExistence(true); setChatListExistence(true);
} else {
_sortKeyInChatList = 0;
} }
} }
@ -209,8 +215,8 @@ void Entry::updateChatListEntry() const {
mainChatListLink(Mode::Important)); mainChatListLink(Mode::Important));
} }
} }
if (Auth().supportMode() if (session().supportMode()
&& !Auth().settings().supportAllSearchResults()) { && !session().settings().supportAllSearchResults()) {
main->repaintDialogRow({ _key, FullMsgId() }); main->repaintDialogRow({ _key, FullMsgId() });
} }
} }