Removed unused argument when pin animation in touchbar is cancelled.

This commit is contained in:
23rd 2022-03-05 17:43:49 +03:00
parent a61ad9e2a2
commit 0f00d90c29
1 changed files with 3 additions and 3 deletions

View File

@ -264,7 +264,7 @@ TimeId CalculateOnlineTill(not_null<PeerData*> peer) {
});
};
const auto cancelCurrentByIndex = [=](int index) {
const auto cancelCurrentPeer = [=] {
Expects(*currentPeer != nullptr);
if (*currentState == State::Started) {
@ -278,7 +278,7 @@ TimeId CalculateOnlineTill(not_null<PeerData*> peer) {
const auto cancelCurrent = [=] {
if (*currentPeer) {
cancelCurrentByIndex(indexOf(*currentPeer));
cancelCurrentPeer();
}
};
@ -356,7 +356,7 @@ TimeId CalculateOnlineTill(not_null<PeerData*> peer) {
const auto index = indexOf(*currentPeer);
if (*currentDesiredIndex == index
|| *currentState != State::Started) {
cancelCurrentByIndex(index);
cancelCurrentPeer();
return;
}
const auto result = *currentDesiredIndex;