From 3e6552dc7a54407d2f7b026a1c21307ef3bca57f Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 22 Feb 2020 17:59:50 +0000 Subject: [PATCH] [PublicRoomEntry] Fix join method --- lib/src/utils/public_rooms_response.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/utils/public_rooms_response.dart b/lib/src/utils/public_rooms_response.dart index b395485..37d858d 100644 --- a/lib/src/utils/public_rooms_response.dart +++ b/lib/src/utils/public_rooms_response.dart @@ -40,7 +40,7 @@ class PublicRoomEntry { final bool worldReadable; Client client; - Future join(Client client) => client.joinRoomById(roomId); + Future join() => client.joinRoomById(roomId); PublicRoomEntry({ this.aliases,