summaryrefslogtreecommitdiff
path: root/op_crates/fetch
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2021-04-21 23:03:04 +0200
committerGitHub <noreply@github.com>2021-04-21 23:03:04 +0200
commit8d0e0ead51d523c35c7d6b423510c9df8ba1339c (patch)
tree3b8c1630bc365d177623c4ec620a9f5b3d4c0ce3 /op_crates/fetch
parent21372d7b25141d5edb662d87e5842744ca23e8b5 (diff)
fix(fetch): Response inspect regression (#10295)
Diffstat (limited to 'op_crates/fetch')
-rw-r--r--op_crates/fetch/23_response.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/op_crates/fetch/23_response.js b/op_crates/fetch/23_response.js
index 44b74f789..42d16d44e 100644
--- a/op_crates/fetch/23_response.js
+++ b/op_crates/fetch/23_response.js
@@ -357,7 +357,7 @@
redirected: this.redirected,
status: this.status,
statusText: this.statusText,
- url: this.url(),
+ url: this.url,
};
return `Response ${inspect(inner)}`;
}