From 9dfd5697e97f4685f41ad2dce1d747a39c851734 Mon Sep 17 00:00:00 2001
From: DTTerastar
Date: Wed, 15 Sep 2021 12:19:19 -0400
Subject: [PATCH] Update CHANGELOG
---
CHANGELOG.md | 6 ++++++
lib/BleFingerprint/BleFingerprint.cpp | 1 -
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 33fdef4..e88b80c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [1.4.0]
+
+- Fingerprints are now 3 tier: primary ids > publicMac > secondard ids. A single mac can have multiple advertisements sent (especially certain beacons). So it might take a few packets before the id settles into the correct one.
+- Volts and temperature are now reported from Eddystone TLM advertisements
+- Names should show up more reliably now as well
+
## [1.3.1]
- Turn off NTP by default
diff --git a/lib/BleFingerprint/BleFingerprint.cpp b/lib/BleFingerprint/BleFingerprint.cpp
index 1cfafb6..0a8c934 100644
--- a/lib/BleFingerprint/BleFingerprint.cpp
+++ b/lib/BleFingerprint/BleFingerprint.cpp
@@ -19,7 +19,6 @@ BleFingerprint::BleFingerprint(BLEAdvertisedDevice *advertisedDevice, float fcmi
void BleFingerprint::fingerprint(BLEAdvertisedDevice *advertisedDevice)
{
-
if (advertisedDevice->haveName())
name = String(advertisedDevice->getName().c_str());