I noticed that approx. ten days ago, events stopped being tracked for me. I can see from the network tab in the browser devtools that when I load the page for the first time, a single API request is being made, but after that, no more requests are made.
I've tried reverting our codebase back to a commit before it stopped working, but that didn't work either, so I don't think we broke anything on our side. We've tried it on multiple peoples laptops and made sure any adblockers were disabled, but no luck.
Has anybody encountered this before or know of anything that may have changed in Mixpanel that I somehow missed (I didn't find anything..)?
The single request that's made is:
https://api.mixpanel.com/decide/?verbose=1&version=1&lib=web&token=<token-redacted>&ip=1&_=1553774377659
and the response:
{notifications: [], config: {enable_collect_everything: false}}
I'm using the javascript snippet from the integration guide and am calling mixpanel.track. Even calling:
mixpanel.track("Test");from the javascript console does nothing. And, like I said, it used to work perfectly!