From 8e505df76856e6c8d8754a8f3e9fc887e32cd556 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Thu, 11 Apr 2024 11:07:28 -0400 Subject: [PATCH] duplicated comment fix --- src/utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.cpp b/src/utils.cpp index 7fcf272..92ce96d 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -108,8 +108,8 @@ namespace Utils { if (Config.bme.active) { String sensorData = BME_Utils::readDataSensor(); - beaconPacket += sensorData + Config.beacon.comment; - secondaryBeaconPacket += sensorData + Config.beacon.comment; + beaconPacket += sensorData; + secondaryBeaconPacket += sensorData; } beaconPacket += Config.beacon.comment; secondaryBeaconPacket += Config.beacon.comment;