ably / ably-asset-tracking-swift

iOS client SDKs for the Ably Asset Tracking service.
Apache License 2.0
9 stars 6 forks source link

Fix bug where, after removing a trackable, can’t add another with same ID #459

Closed lawrence-forooghian closed 1 year ago

lawrence-forooghian commented 1 year ago

This occurs because the second time around, the channel will be in a DETACHED state, and trying to enter presence on that channel will give the error unable to enter presence channel (incompatible channel state: Detached).

So, we follow Android’s approach, and check the channel’s state and attach if necessary before we try to enter presence.

Closes #431.