fix(fetch): Response inspect regression (#10295)

This commit is contained in:
Aaron O'Mullan 2021-04-21 23:03:04 +02:00 committed by GitHub
parent 21372d7b25
commit 8d0e0ead51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View file

@ -357,7 +357,7 @@
redirected: this.redirected,
status: this.status,
statusText: this.statusText,
url: this.url(),
url: this.url,
};
return `Response ${inspect(inner)}`;
}