mirror of https://github.com/procxx/kepka.git
Filter only chats from the list in exceptions.
This commit is contained in:
parent
b42ba1a7a3
commit
2dbaee4fe1
|
@ -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…
Reference in New Issue