From b300efeb965d87fe36c7e4526a36b70eaede811b Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Mon, 5 May 2025 13:56:53 +0200 Subject: [PATCH] note --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 44abf812..36c1437e 100644 --- a/src/app.ts +++ b/src/app.ts @@ -22,7 +22,7 @@ app.use((req, _res, next) => { req.headers["content-encoding"] = undefined; } - // U18 and below use application/x-www-form-urlencoded even tho the data is JSON which Express doesn't like. + // U18 uses application/x-www-form-urlencoded even tho the data is JSON which Express doesn't like. if (req.headers["content-type"] == "application/x-www-form-urlencoded") { req.headers["content-type"] = "application/octet-stream"; }