-
Notifications
You must be signed in to change notification settings - Fork 39
Description
I was monitoring all the requests done by my app and I noticed Instabug is regularly fetching the following url every minute https://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 about In-App chats where is mentioned that this feature is enabled by default and can be disabled by executing Chats.setState(Feature.State.DISABLED);
, however I am not able to find any Chats
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 called In-App replies, is this the new naming for the In-App chats? In the documentation there it recommends disabling it by executing Replies.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.