Attempt to fix up overly sensitive cookie parsing

This commit is contained in:
Marshall Polaris 2022-07-19 01:32:38 -07:00
parent f6d2c56e43
commit c256e9c0cc

View File

@ -6,10 +6,11 @@ const encodeCookie = (name: string, val: string) => {
const decodeCookie = (cookie: string) => {
const parts = cookie.trim().split('=')
if (parts.length != 2) {
if (parts.length < 2) {
throw new Error(`Invalid cookie contents: ${cookie}`)
}
return [parts[0], decodeURIComponent(parts[1])] as const
const rest = parts.slice(1).join('') // there may be more = in the value
return [parts[0], decodeURIComponent(rest)] as const
}
export const setCookie = (name: string, val: string, opts?: CookieOptions) => {