Skip to content

Commit

Permalink
fix(message): handle trigger='C' and 'v' generated by iOS
Browse files Browse the repository at this point in the history
Fixes #1768
  • Loading branch information
growse committed Sep 8, 2024
1 parent ab5cc49 commit 4b33f92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Fix crash when trying to decode an invalid face image on an info card
- Fix MQTT disconnect when receiving an encrypted message that can't be decrypted (#1831)
- Fix HTTP client certs not working properly with Nginx (#1793)
- Fix ability to handle trigger="v" and "C" locations generated from iOS (#1768)

## Version 2.5.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ open class MessageLocation(
PING("p"), // Issued by the periodic ping worker
TIMER("t"), // Generated by iOS devices
BEACON("b"), // Generated by iOS beacons
IOS_FREQUENT_LOCATIONS("v"), // Generated by iOS frequent locations
IOS_FOLLOW_CIRCULAR("C"), // Generated by iOS follow circular region
DEFAULT("")
}
}

0 comments on commit 4b33f92

Please sign in to comment.