mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 08:20:58 -05:00
In some rare cases even cached body can be used
This commit is contained in:
parent
4b559b054a
commit
0ebd21131f
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ class CachedHttpResponse implements HttpResponse {
|
||||||
* @inheritdoc
|
* @inheritdoc
|
||||||
*/
|
*/
|
||||||
get bodyUsed(): boolean {
|
get bodyUsed(): boolean {
|
||||||
return false;
|
return !this._blob && !this._formData && this._response.bodyUsed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue