We were recently testing our RevenueCat integration in the Google Play Store sandbox and had a user that was stuck in a terminal Active state even though their account had been cancelled on the Google Play Store side.
It turned out that what happened was that the user started their subscription at 8:00 PM and then cancelled at 8:23 PM.
Had their subscription of monthly_plan cancelled due to a billing error
2021-09-07 8:23 PM
Started a subscription of monthly_plan
2021-09-07 8:00 PM
The only problem was that the webhook for both of these events were sent at 8:23 PM and had the exact same ms timestamp for their `event_timestamp_ms` so we had no way to determine which happened first.
My main questions are:
- Is this related to the fact that these were sandbox events? Are sandbox events not guaranteed to go out when the event happens?
- Even if this is related to them being sandbox events, is there a way to differentiate which event was applied first?