mirror of
https://github.com/coder/code-server.git
synced 2026-05-05 12:05:18 +02:00
Handle undefined body
In the latest Express it seems the body is undefined when no data is passed (instead of being empty).
This commit is contained in:
@@ -319,8 +319,8 @@ export const getCookieOptions = (req: express.Request): express.CookieOptions =>
|
||||
// URL of that page) and the relative path to the root as given to it by the
|
||||
// backend. Using these two we can determine the true absolute root.
|
||||
const url = new URL(
|
||||
req.query.base || req.body.base || "/",
|
||||
req.query.href || req.body.href || "http://" + (req.headers.host || "localhost"),
|
||||
req.query.base || req.body?.base || "/",
|
||||
req.query.href || req.body?.href || "http://" + (req.headers.host || "localhost"),
|
||||
)
|
||||
return {
|
||||
domain: getCookieDomain(url.host, req.args["proxy-domain"]),
|
||||
|
||||
Reference in New Issue
Block a user