Skip to content

Commit

Permalink
fix: model detection false positive (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb committed Mar 13, 2024
1 parent 0ffcc83 commit 75886b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GalaxyBudsClient/Model/Specifications/DeviceSpecHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ static DeviceSpecHelper()
Specs.Add(new BudsPlusDeviceSpec());
Specs.Add(new BudsLiveDeviceSpec());
Specs.Add(new BudsProDeviceSpec());
Specs.Add(new Buds2ProDeviceSpec()); // important: B2Pro is added before B2 to avoid false positives
Specs.Add(new Buds2DeviceSpec());
Specs.Add(new Buds2ProDeviceSpec());
Specs.Add(new BudsFeDeviceSpec());
}

Expand Down

0 comments on commit 75886b0

Please sign in to comment.