From 612711d60213c9152acea6567bfc9c3559ad89da Mon Sep 17 00:00:00 2001 From: krille-chan Date: Sun, 11 Aug 2024 11:35:26 +0200 Subject: [PATCH] chore: Follow up no more chats found label --- lib/pages/chat_list/chat_list_body.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat_list/chat_list_body.dart b/lib/pages/chat_list/chat_list_body.dart index 0f06fde97..bf23e841e 100644 --- a/lib/pages/chat_list/chat_list_body.dart +++ b/lib/pages/chat_list/chat_list_body.dart @@ -266,7 +266,9 @@ class ChatListViewBody extends StatelessWidget { Padding( padding: const EdgeInsets.all(16.0), child: Text( - L10n.of(context)!.noChatsFoundHere, + client.rooms.isEmpty + ? L10n.of(context)!.noChatsFoundHere + : L10n.of(context)!.noMoreChatsFound, textAlign: TextAlign.center, style: TextStyle( fontSize: 18,