summaryrefslogtreecommitdiff
path: root/ext/cache/01_cache.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/cache/01_cache.js')
-rw-r--r--ext/cache/01_cache.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cache/01_cache.js b/ext/cache/01_cache.js
index a5bcde598..269261f40 100644
--- a/ext/cache/01_cache.js
+++ b/ext/cache/01_cache.js
@@ -105,7 +105,7 @@ class Cache {
const reqUrl = new URL(innerRequest.url());
if (reqUrl.protocol !== "http:" && reqUrl.protocol !== "https:") {
throw new TypeError(
- "Request url protocol must be 'http:' or 'https:'",
+ `Request url protocol must be 'http:' or 'https:': received '${reqUrl.protocol}'`,
);
}
if (innerRequest.method !== "GET") {