From e36a66b97110dcb82dcd550b8c4e69f29acaa9a6 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 17 Mar 2020 19:00:51 +0400 Subject: [PATCH] Fix build for macOS. --- Telegram/SourceFiles/platform/mac/mac_touchbar.mm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/platform/mac/mac_touchbar.mm b/Telegram/SourceFiles/platform/mac/mac_touchbar.mm index e4b5f70ce..119737cc8 100644 --- a/Telegram/SourceFiles/platform/mac/mac_touchbar.mm +++ b/Telegram/SourceFiles/platform/mac/mac_touchbar.mm @@ -434,7 +434,7 @@ void AppendEmojiPacks(std::vector &to) { if (std::abs(_startPosition - currentPosition) > step) { const auto delta = (currentPosition > _startPosition) ? 1 : -1; const auto newIndex = _tempIndex + delta; - const auto &order = Auth().data().pinnedChatsOrder(nullptr); + const auto &order = Auth().data().pinnedChatsOrder(nullptr, FilterId()); // In case the order has been changed from another device // while the user is dragging the dialog. @@ -444,6 +444,7 @@ void AppendEmojiPacks(std::vector &to) { if (newIndex >= 0 && newIndex < order.size()) { Auth().data().reorderTwoPinnedChats( + FilterId(), order.at(_tempIndex).history(), order.at(newIndex).history()); _tempIndex = newIndex; @@ -1324,7 +1325,7 @@ void AppendEmojiPacks(std::vector &to) { } - (void) updatePinnedButtons { - const auto &order = Auth().data().pinnedChatsOrder(nullptr); + const auto &order = Auth().data().pinnedChatsOrder(nullptr, FilterId()); auto isSelfPeerPinned = false; auto isArchivePinned = false; PinnedDialogButton *selfChatButton;