From 8e9c76c26bdb3e35ad2d1116ea67d4007a5c121f Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 5 May 2020 23:13:05 +0200 Subject: [PATCH] options is the 5th arg --- src/matrix/net/HomeServerApi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/net/HomeServerApi.js b/src/matrix/net/HomeServerApi.js index 4ac7f9e2..008ee8a9 100644 --- a/src/matrix/net/HomeServerApi.js +++ b/src/matrix/net/HomeServerApi.js @@ -136,7 +136,7 @@ export class HomeServerApi { } versions(options = null) { - return this._request("GET", `${this._homeserver}/_matrix/client/versions`, null, options); + return this._request("GET", `${this._homeserver}/_matrix/client/versions`, null, null, options); } }