-
- Downloads
[FIX] website: prevent crash if unexpected cookies bar cookie value
With commit [1] we refactored the cookies bar to let the user decide if he wants to accept the cookies (and/or only part of it). Before that commit, the `website_cookies_bar` cookie could only hold `true` as value, which now is holding an object like `{"required": true, "optional": false}`. This creates an issue if a user is coming from a previous version with `true` as cookie value because since the refactoring it will crash both in JS and PY because `in` instruction with a boolean value will fail in both languages. The decision taken here is simply to remove the cookie if we face such a case so the user can decide again what he wants (since there is more choices now). It also means that we won't be holding an outdated value in the cookie any longer. [1]: https://github.com/odoo/odoo/commit/2cbda6c98ee947cea1d06c09880eee8c758304a8 opw-3074303 closes odoo/odoo#106476 Signed-off-by:Quentin Smetz (qsm) <qsm@odoo.com>
Please register or sign in to comment