You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
"cookies" in the read function is an array but gets iterated like object properties. This leads to an error in js console when iteration over array fields is done it tries to split a function object afterwards. If you iterate via for(var i; i < cookies.length; i++) then it will only try to split real array fields
The text was updated successfully, but these errors were encountered:
Im sorry i cant reproduce it anymore. But as split() always returns an array and you already split the cookie in line 46 in current code "cookies" will then be an array and imho it is safer to iterate said array in line 54 in the style i proposed.
"cookies" in the read function is an array but gets iterated like object properties. This leads to an error in js console when iteration over array fields is done it tries to split a function object afterwards. If you iterate via for(var i; i < cookies.length; i++) then it will only try to split real array fields
The text was updated successfully, but these errors were encountered: