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
Since parse_http_cookie started returning a table (commit 4bb76a3 )
session.lua/parse_session_id no longer works
and hence http_cookie_ident is broken.
A fix is to replace line 55+56 of session.lua with:
local session_cookie = parse_http_cookie(cookie).session
return session_cookie and session_cookie[1] or nil
The text was updated successfully, but these errors were encountered:
Since parse_http_cookie started returning a table (commit 4bb76a3 )
session.lua/parse_session_id no longer works
and hence http_cookie_ident is broken.
A fix is to replace line 55+56 of session.lua with:
local session_cookie = parse_http_cookie(cookie).session
return session_cookie and session_cookie[1] or nil
The text was updated successfully, but these errors were encountered: