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 4cc1410 commit 8fb5828Copy full SHA for 8fb5828
src/lib/dao-cache.js
@@ -1607,10 +1607,10 @@ class Cache {
1607
];
1608
1609
// combine the standard headers with the headers specified for endpoint in custom/policies.json
1610
- let passThrough = [].concat(this.#headersToRetain, defaultHeadersToRetain);
+ let ptHeaders = [].concat(this.#headersToRetain, defaultHeadersToRetain);
1611
1612
// lowercase the headers we are looking for
1613
- passThrough = passThrough.map(element => {
+ let passThrough = ptHeaders.map(element => {
1614
return element.toLowerCase();
1615
});
1616
0 commit comments