We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 341b092 commit 742695cCopy full SHA for 742695c
src/index.ts
@@ -66,7 +66,6 @@ app.all("/api/*", async (c) => {
66
const redisData = await get(userId, c.req.method, path);
67
if (!redisData) return c.json({});
68
const { status, data } = JSON.parse(redisData);
69
- c.status = status;
70
return c.json(data, status);
71
});
72
0 commit comments