From ba0564367ed4a5677bc4c45ab0d1cbed708ebef5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 24 May 2023 23:23:52 +0200 Subject: [PATCH] fix: does not override ATG configuration with default one 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index 9a0d0f86..54af77fc 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -831,8 +831,8 @@ export class ChargingStation { this.getTemplateFromFile()?.AutomaticTransactionGenerator; } return { - ...automaticTransactionGeneratorConfiguration, ...Constants.DEFAULT_ATG_CONFIGURATION, + ...automaticTransactionGeneratorConfiguration, }; } -- 2.34.1