You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'll get around to fixing it, but it could be a good first issue for someone who wants to dive into the code but doesn't know where to start. Here's why the bug occurs:
The easiest fix is to implement makePolicyContainer and clonePolicyContainer (both are used). Follow the steps in the links above the methods (and include the steps as comments). A "list" is an array.
The text was updated successfully, but these errors were encountered:
I'll get around to fixing it, but it could be a good first issue for someone who wants to dive into the code but doesn't know where to start. Here's why the bug occurs:
The referrerPolicy is being set to undefined here
undici/lib/fetch/index.js
Lines 557 to 559 in bc8e2b8
because we don't implement policyContainers:
undici/lib/fetch/util.js
Lines 328 to 338 in bc8e2b8
which causes this condition to trigger
undici/lib/fetch/util.js
Lines 346 to 348 in bc8e2b8
which means the header is never appended here
undici/lib/fetch/index.js
Lines 1333 to 1335 in bc8e2b8
The easiest fix is to implement
makePolicyContainer
andclonePolicyContainer
(both are used). Follow the steps in the links above the methods (and include the steps as comments). A "list" is an array.The text was updated successfully, but these errors were encountered: