You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TYPE_IBEACON_ALTBEACON is only tested in a switch statement if isEddystone() == true. But the tests in isEddystone already exclude TYPE_IBEACON_ALTBEACON.
Looking at the upstream matcher (m:2-3=beac), to test for AltBeacon you'd need to look for getBeaconTypeCode() == 0xBEAC.
Version tested
Version 1.2.2 (F-Droid)
The text was updated successfully, but these errors were encountered:
Steps to reproduce
Expected behaviour
Beacon is reported as an AltBeacon.
Actual behaviour
Beacon is detected as an iBeacon. The decoded values (UUID, major, minor) appear to be otherwise correct.
Other details
It looks like the issue is here:
beaconloc/app/src/main/java/com/samebits/beacon/locator/model/DetectedBeacon.java
Lines 98 to 121 in 41960ed
TYPE_IBEACON_ALTBEACON
is only tested in a switch statement ifisEddystone() == true
. But the tests inisEddystone
already excludeTYPE_IBEACON_ALTBEACON
.Looking at the upstream matcher (
m:2-3=beac
), to test for AltBeacon you'd need to look forgetBeaconTypeCode() == 0xBEAC
.Version tested
Version 1.2.2 (F-Droid)
The text was updated successfully, but these errors were encountered: