options is the 5th arg

This commit is contained in:
Bruno Windels 2020-05-05 23:13:05 +02:00
parent 4de29779c7
commit 8e9c76c26b

View file

@ -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);
}
}