Skip to content

Commit f24ab92

Browse files
update incorrect check
1 parent 0393f54 commit f24ab92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cloudflare/src/api/overrides/incremental-cache/regional-cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class RegionalCache implements IncrementalCache {
7575
}
7676

7777
get #bypassTagCacheOnCacheHit(): boolean {
78-
if (this.opts.bypassTagCacheOnCacheHit) {
78+
if (this.opts.bypassTagCacheOnCacheHit !== undefined) {
7979
// If the bypassTagCacheOnCacheHit option is set we return that one
8080
return this.opts.bypassTagCacheOnCacheHit;
8181
}

0 commit comments

Comments
 (0)