mirror of https://github.com/procxx/kepka.git
Added notifier of archiving pinned dialog to update touchbar.
This commit is contained in:
parent
26569683ca
commit
da6baeb1a7
|
@ -507,6 +507,7 @@ void ApiWrap::toggleHistoryArchived(
|
||||||
if (const auto already = _historyArchivedRequests.take(history)) {
|
if (const auto already = _historyArchivedRequests.take(history)) {
|
||||||
request(already->first).cancel();
|
request(already->first).cancel();
|
||||||
}
|
}
|
||||||
|
const auto isPinned = history->isPinnedDialog();
|
||||||
const auto archiveId = Data::Folder::kId;
|
const auto archiveId = Data::Folder::kId;
|
||||||
const auto requestId = request(MTPfolders_EditPeerFolders(
|
const auto requestId = request(MTPfolders_EditPeerFolders(
|
||||||
MTP_vector<MTPInputFolderPeer>(
|
MTP_vector<MTPInputFolderPeer>(
|
||||||
|
@ -524,6 +525,9 @@ void ApiWrap::toggleHistoryArchived(
|
||||||
if (const auto data = _historyArchivedRequests.take(history)) {
|
if (const auto data = _historyArchivedRequests.take(history)) {
|
||||||
data->second();
|
data->second();
|
||||||
}
|
}
|
||||||
|
if (isPinned) {
|
||||||
|
_session->data().notifyPinnedDialogsOrderUpdated();
|
||||||
|
}
|
||||||
}).fail([=](const RPCError &error) {
|
}).fail([=](const RPCError &error) {
|
||||||
_historyArchivedRequests.remove(history);
|
_historyArchivedRequests.remove(history);
|
||||||
}).send();
|
}).send();
|
||||||
|
|
Loading…
Reference in New Issue