Closed alphatownsman closed 1 year ago
var cookies = document.cookie .split(';') .filter(function (cookie) { return cookie.indexOf(name + "=") === 0; })[0];
code works when cookie is csrftoken=xyz; abc=def but fails on abc=def; csrftoken=xyz
csrftoken=xyz; abc=def
abc=def; csrftoken=xyz
Fixed. Will be in new release.
code works when cookie is
csrftoken=xyz; abc=def
but fails onabc=def; csrftoken=xyz