6 ms·
No, it does not use cookies so no cookie prompt is needed.
by mcao 6y ago
No, it does not use cookies so no cookie prompt is needed.
- eclipsetheworld 6y agoI just checked your tracking code. It looks like you're using the locale storage to set a session id to track uniqueness. According to this [0] Stackexchange answer you will still have to display a cookie banner. [0] https://softwareengineering.stackexchange.com/questions/290566/is-localstorage-under-the-cookie-law https://softwareengineering.stackexchange.com/questions/2905...
- mcao 6y agoThe local storage is mainly for performance. It's to prevent a round-trip to the database to figure out the session again. The session id will be the same regardless and it can function without local storage. But I do see your point. I may consider removing it just to be safe.