- Notifications
You must be signed in to change notification settings - Fork40
Bug: Instabug keeps trying to sync chats even with Replies feature disabled. #503
Description
I was monitoring all the requests done by my app and I noticed Instabug is regularly fetching the following url every minutehttps://api.instabug.com/api/sdk/v3/chats/sync.

This was quite surprising as this is not a feature we currently use.
I found some documentation aboutIn-App chats where is mentioned that this feature is enabled by default and can be disabled by executingChats.setState(Feature.State.DISABLED);, however I am not able to find anyChats class, so I am unable to follow this. Not sure if this is some legacy documentation that is not up to date.
Alternatively I also found another feature calledIn-App replies, is this the new naming for the In-App chats? In the documentation there it recommends disabling it by executingReplies.setState(Feature.State.DISABLED).
This one is indeed accesible, I added, but unfortunately I keep seeing Instabug running that chats/sync request regularly.
This is a feature we do not rely on, so we do not want to impact the performance of our app with a useless constant fetch. What would be the best way to disable it?
Thanks.