aboutsummaryrefslogtreecommitdiff
path: root/vendor/maunium.net/go/gomatrix/client.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-05-10 20:56:46 +0300
committerTulir Asokan <tulir@maunium.net>2018-05-10 21:22:01 +0300
commit66b17967eba2a92952f76db3eed28324136eaa30 (patch)
tree2660dbba1fdf7af1a79a45768c095ab0f4c14b79 /vendor/maunium.net/go/gomatrix/client.go
parent706f4c44048e59bf914877f6f8bf17ad9915a65c (diff)
Update dependencies
Diffstat (limited to 'vendor/maunium.net/go/gomatrix/client.go')
-rw-r--r--vendor/maunium.net/go/gomatrix/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/maunium.net/go/gomatrix/client.go b/vendor/maunium.net/go/gomatrix/client.go
index 90a07c6..7725ac3 100644
--- a/vendor/maunium.net/go/gomatrix/client.go
+++ b/vendor/maunium.net/go/gomatrix/client.go
@@ -529,7 +529,7 @@ func (cli *Client) ForgetRoom(roomID string) (resp *RespForgetRoom, err error) {
// InviteUser invites a user to a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-invite
func (cli *Client) InviteUser(roomID string, req *ReqInviteUser) (resp *RespInviteUser, err error) {
u := cli.BuildURL("rooms", roomID, "invite")
- _, err = cli.MakeRequest("POST", u, struct{}{}, &resp)
+ _, err = cli.MakeRequest("POST", u, req, &resp)
return
}