It does thanks... that is very strange then.. also, in Launch, it actually does create an "appMeasurment" file (you just don't edit it directly like the old way - but looks like it might be missing some stuff based on that error)... it does seem like there may be a bug (or 2... or 3) in the plugin... which isn't good.
This might require the engineering team (which means opening a ticket and waiting for someone to debug)....
OR making your own version of the code.... something far more readable....
Basically, it looks like this function just returns a value within a specified time if it doesn't match the last sent version... it shouldn't be hard to make a similar function.
In pseudo "code"
- Pass the param, the cookie name, the length of time (you can extend to have unit - like min/sec if you think you need that level of control)
- read the value of the cookie if it exists
- if it doesn't - write a new cookie with the value and expiry
- if it does, read the value
- compare that value with what you are trying to set
- if it matches, return nothing
- if it doesn't match, return the new value
- overwrite the cookie with the new value and expiry
That should be the gist of the logic... if you are comfortable with Javascript, this might be the faster option.... Me personally, in this situation, I would probably try and do my own thing rather than waiting... especially since this logic seems pretty straight forward (but I would also make sure to run this through a heavy testing cycle to make sure I didn't miss anything).
If you try and debug and modify the existing, if someone else is working on the code, they may not know what you have changed.... If you write your own, it should be obvious (and I would suggest adding a comment specifying why you aren't using the standard plugin 😛 )
That said, even if you do your own solution, I would still pursue the client care ticket.. if there is a bug (and it really looks like there a few happening there) they should look at that and make sure no one else has issues....
I would, but since I don't use that plugin, I have no place where they can see the issues in action....
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.