diff options
author | Alex Auvolat <alex@adnab.me> | 2021-06-01 23:43:23 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-06-01 23:43:23 +0200 |
commit | 7e2294933aa159e170ab8b090c58e3c3d97c765a (patch) | |
tree | 5ea47e8516d1e82d768d2df62faf5cd6b54c7517 /mxlib | |
parent | adf163bad564b16c7caefbdfb9ccfb9abac9fa97 (diff) | |
download | easybridge-master.tar.gz easybridge-master.zip |
Diffstat (limited to 'mxlib')
-rw-r--r-- | mxlib/api.go | 1 | ||||
-rw-r--r-- | mxlib/client.go | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/mxlib/api.go b/mxlib/api.go index 9cd02d5..9b7cd36 100644 --- a/mxlib/api.go +++ b/mxlib/api.go @@ -41,6 +41,7 @@ type LoginResponse struct { type RegisterRequest struct { Auth RegisterRequestAuth `json:"auth"` + Type string `json:"type"` Username string `json:"username"` } diff --git a/mxlib/client.go b/mxlib/client.go index 689d3a0..4700333 100644 --- a/mxlib/client.go +++ b/mxlib/client.go @@ -147,6 +147,7 @@ func (mx *Client) RegisterUser(username string) error { Auth: RegisterRequestAuth{ Type: "m.login.application_service", }, + Type: "m.login.application_service", Username: username, } var rep RegisterResponse |