diff options
Diffstat (limited to 'ext/cache')
-rw-r--r-- | ext/cache/01_cache.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cache/01_cache.js b/ext/cache/01_cache.js index ab44c11b5..bf0243e3c 100644 --- a/ext/cache/01_cache.js +++ b/ext/cache/01_cache.js @@ -255,7 +255,7 @@ }, ); if (matchResult) { - const [meta, responseBodyRid] = matchResult; + const { 0: meta, 1: responseBodyRid } = matchResult; let body = null; if (responseBodyRid !== null) { body = readableStreamForRid(responseBodyRid); |