From 1ea42116d27dbaa6cdb86809042915ca8cf79309 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 19 Mar 2020 13:11:41 +0400 Subject: [PATCH] Fix adding Saved Messages exception to filters. --- Telegram/SourceFiles/boxes/filters/edit_filter_box.cpp | 2 +- Telegram/SourceFiles/data/data_chat_filters.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/boxes/filters/edit_filter_box.cpp b/Telegram/SourceFiles/boxes/filters/edit_filter_box.cpp index e6d6b2f6a..0584c746f 100644 --- a/Telegram/SourceFiles/boxes/filters/edit_filter_box.cpp +++ b/Telegram/SourceFiles/boxes/filters/edit_filter_box.cpp @@ -276,7 +276,7 @@ void EditExceptions( const auto peers = box->peerListCollectSelectedRows(); auto &&histories = ranges::view::all( peers - ) | ranges::view::transform([=](not_null peer) { + ) | ranges::view::transform([=](not_null peer) { return window->session().data().history(peer); }); auto changed = base::flat_set>{ diff --git a/Telegram/SourceFiles/data/data_chat_filters.cpp b/Telegram/SourceFiles/data/data_chat_filters.cpp index b5a012c09..0042cb5de 100644 --- a/Telegram/SourceFiles/data/data_chat_filters.cpp +++ b/Telegram/SourceFiles/data/data_chat_filters.cpp @@ -59,6 +59,8 @@ ChatFilter ChatFilter::FromTL( const auto channel = owner->channel(data.vchannel_id().v); channel->setAccessHash(data.vaccess_hash().v); return (PeerData*)channel; + }, [&](const MTPDinputPeerSelf &data) { + return (PeerData*)owner->session().user(); }, [&](const auto &data) { return (PeerData*)nullptr; });