diff --git a/src/index.js b/src/index.js index 56044fe..8bf9248 100644 --- a/src/index.js +++ b/src/index.js @@ -125,7 +125,7 @@ export default function fetch(url, opts) { // HTTP fetch step 5.5 switch (request.redirect) { case 'error': - reject(new FetchError(`redirect mode is set to error: ${request.url}`, 'no-redirect')); + reject(new FetchError(`uri requested responds with a redirect, redirect mode is set to error: ${request.url}`, 'no-redirect')); finalize(); return; case 'manual':