fix: #455
This commit is contained in:
parent
abf4f9ba6e
commit
d8291244e9
@ -2,7 +2,7 @@ function getValue(key) {
|
||||
if (!document.cookie) return null;
|
||||
const list = document.cookie.split(';') || [];
|
||||
for (const item of list) {
|
||||
const [k, v] = item.split('=');
|
||||
const [k = '', v = ''] = item.split('=');
|
||||
if (k.trim() === key) return v;
|
||||
}
|
||||
return null;
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user