From de4cb8b6a7ba9028808d28ba931be2dbbc8579f3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 20 Sep 2022 20:24:47 +0200 Subject: [PATCH] Add missing break MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/charging-station/ChargingStation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index ed876d10..d3c33fc3 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -1582,6 +1582,7 @@ export default class ChargingStation { // Remove the request from the cache in case of error at response handling this.requests.delete(messageId); } + break; } } } -- 2.34.1