From 88a7d64091753084e4b94cc9e7933ad1a59e1d0e Mon Sep 17 00:00:00 2001
From: Bruno Windels <brunow@matrix.org>
Date: Mon, 29 Jul 2019 19:53:30 +0200
Subject: [PATCH] fixup: delay not awaited, but not needed for now

---
 src/matrix/SendScheduler.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/matrix/SendScheduler.js b/src/matrix/SendScheduler.js
index b7407238..5340d093 100644
--- a/src/matrix/SendScheduler.js
+++ b/src/matrix/SendScheduler.js
@@ -22,7 +22,6 @@ export class RateLimitingBackoff {
 
     async waitForNextSend() {
         // this._remainingRateLimitedRequest = Math.max(0, this._remainingRateLimitedRequest - 1);
-        Platform.delay(1000);
     }
 }