From 3cc4cd8410962b7273b661e18320d3208de9dfbe Mon Sep 17 00:00:00 2001 From: TheOneWithTheBraid Date: Tue, 22 Nov 2022 07:53:59 +0100 Subject: [PATCH] fix: follow account kind in registration - as of now, account kind ist simply ignored Signed-off-by: TheOneWithTheBraid --- lib/src/client.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/client.dart b/lib/src/client.dart index 0368e733..db9a8467 100644 --- a/lib/src/client.dart +++ b/lib/src/client.dart @@ -448,6 +448,7 @@ class Client extends MatrixApi { AccountKind? kind, }) async { final response = await super.register( + kind: kind, username: username, password: password, auth: auth,