diff --git a/Telegram/SourceFiles/platform/mac/touchbar/items/mac_pinned_chats_item.mm b/Telegram/SourceFiles/platform/mac/touchbar/items/mac_pinned_chats_item.mm index f8fe0c7ee..ede7a58f9 100644 --- a/Telegram/SourceFiles/platform/mac/touchbar/items/mac_pinned_chats_item.mm +++ b/Telegram/SourceFiles/platform/mac/touchbar/items/mac_pinned_chats_item.mm @@ -264,7 +264,7 @@ TimeId CalculateOnlineTill(not_null peer) { }); }; - const auto cancelCurrentByIndex = [=](int index) { + const auto cancelCurrentPeer = [=] { Expects(*currentPeer != nullptr); if (*currentState == State::Started) { @@ -278,7 +278,7 @@ TimeId CalculateOnlineTill(not_null peer) { const auto cancelCurrent = [=] { if (*currentPeer) { - cancelCurrentByIndex(indexOf(*currentPeer)); + cancelCurrentPeer(); } }; @@ -356,7 +356,7 @@ TimeId CalculateOnlineTill(not_null peer) { const auto index = indexOf(*currentPeer); if (*currentDesiredIndex == index || *currentState != State::Started) { - cancelCurrentByIndex(index); + cancelCurrentPeer(); return; } const auto result = *currentDesiredIndex;