From 9a89b4298df6bbbf5461b085d366fc5669632869 Mon Sep 17 00:00:00 2001 From: Hugh Nimmo-Smith Date: Wed, 13 Apr 2022 17:53:23 +0100 Subject: [PATCH] Remove async as no await in function --- src/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.ts b/src/client.ts index 03e1f9fdf36..f98861da227 100644 --- a/src/client.ts +++ b/src/client.ts @@ -6597,7 +6597,7 @@ export class MatrixClient extends TypedEventEmitter} true if server supports the `logout_devices` parameter */ - public async doesServerSupportLogoutDevices(): Promise { + public doesServerSupportLogoutDevices(): Promise { return this.isVersionSupported("r0.6.1"); }