Closed
Description
It seems that website is not reloaded if rule like this:
example.org#%#//scriptlet('trusted-set-cookie-reload', 'cmpconsent', '$now$')
is used.
Probably the problem is with value === cookieValue
here:
Scriptlets/src/helpers/cookie-utils.js
Lines 126 to 138 in 85e6beb
The value
is $now$
, but cookieValue
is created by Date.now().toString()
, so it's something like 1677324255603
and function returns false
.