From ae00744b58ac9f9e8da51fa89eaf1623f0d7c826 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sun, 23 Feb 2020 09:52:43 +0100 Subject: [PATCH] Fix open hashtagrooms --- lib/views/chat_list.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/views/chat_list.dart b/lib/views/chat_list.dart index ccea0e8..0e74a10 100644 --- a/lib/views/chat_list.dart +++ b/lib/views/chat_list.dart @@ -92,9 +92,11 @@ class _ChatListState extends State { searchController.text.sigil == "#") { publicRoomsResponse.publicRooms.add( PublicRoomEntry( - aliases: [searchController.text], - name: searchController.text, - roomId: searchController.text), + aliases: [searchController.text], + name: searchController.text, + roomId: searchController.text, + client: Matrix.of(context).client, + ), ); } }