Skip to content

Commit 5af141e

Browse files
committed
Fixes
1 parent 4e0c11f commit 5af141e

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

packages/nextjs-cache-handler/package-lock.json

Lines changed: 14 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/nextjs-cache-handler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"next",
1919
"redis"
2020
],
21-
"version": "2.0.0-canary5",
21+
"version": "2.0.0-canary6",
2222
"type": "module",
2323
"license": "MIT",
2424
"description": "Next.js cache handlers",

packages/nextjs-cache-handler/src/handlers/redis-strings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export default function createHandler({
236236
.hSet(
237237
keyPrefix + sharedTagsKey,
238238
key,
239-
JSON.stringify(cacheHandlerValue.tags || []),
239+
JSON.stringify(cacheHandlerValue.tags ?? []),
240240
);
241241

242242
const setSharedTtlOperation = lifespan

0 commit comments

Comments
 (0)