diff --git a/lib/web/fetch/index.js b/lib/web/fetch/index.js index 85d4c2e9fed..19650fb07a7 100644 --- a/lib/web/fetch/index.js +++ b/lib/web/fetch/index.js @@ -1025,7 +1025,7 @@ function fetchFinale (fetchParams, response) { let responseStatus = 0 // 7. If fetchParams’s request’s mode is not "navigate" or response’s has-cross-origin-redirects is false: - if (fetchParams.request.mode !== 'navigator' || !response.hasCrossOriginRedirects) { + if (fetchParams.request.mode !== 'navigate' || !response.hasCrossOriginRedirects) { // 1. Set responseStatus to response’s status. responseStatus = response.status