mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-18 23:27:09 +02:00
Filter only chats from the list in exceptions.
This commit is contained in:
parent
b42ba1a7a3
commit
2dbaee4fe1
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ object_ptr<Ui::RpWidget> EditFilterChatsListController::prepareTypesList() {
|
|||
|
||||
auto EditFilterChatsListController::createRow(not_null<History*> history)
|
||||
-> std::unique_ptr<Row> {
|
||||
return std::make_unique<Row>(history);
|
||||
return history->inChatList() ? std::make_unique<Row>(history) : nullptr;
|
||||
}
|
||||
|
||||
void EditFilterChatsListController::updateTitle() {
|
||||
|
|
Loading…
Add table
Reference in a new issue