Skip to content

Commit 1e0f9a5

Browse files
committed
fixup
1 parent d362a40 commit 1e0f9a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Login.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ function parseDocumentCookie () {
206206
if (!item.includes('=')) return obj
207207

208208
const split = item.split('=')
209-
obj[split[0]] = split[1]
209+
obj[split[0].trim()] = split[1].trim()
210210
return obj
211211
}, {} as Record<string, string>)
212212
}

0 commit comments

Comments
 (0)