Blind stab in the dark to fix #41

This commit is contained in:
DTTerastar 2021-09-18 13:05:07 -04:00
parent 948bcd7da0
commit 0ff4650bd3
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.5.4]
- Fix beacons that send BOTH manufacture data and service uuids (#41)
## [1.5.3]
- Fix m5stickc init flag

View File

@ -72,7 +72,8 @@ void BleFingerprint::fingerprint(BLEAdvertisedDevice *advertisedDevice)
sid = fingerprint;
}
}
else if (advertisedDevice->haveManufacturerData())
if (advertisedDevice->haveManufacturerData())
{
std::string strManufacturerData = advertisedDevice->getManufacturerData();
if (strManufacturerData.length() > 2)