Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/src/commit/3ea5076053359b518b1b4d537e7b61580d9275a3/server/middleware/clearcookies.ts
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
const clearCookies: Middleware = (_req, res, next) => {
|
|
res.removeHeader('Set-Cookie');
|
|
next();
|
|
};
|
|
|
|
export default clearCookies;
|