Blind stab in the dark to fix #41
This commit is contained in:
parent
948bcd7da0
commit
0ff4650bd3
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue