.blob() must remain bound to the containing object

This commit is contained in:
Rikki Gibson 2018-05-14 15:04:54 -07:00
Родитель ea57c422c0
Коммит 454ab53fc7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -75,7 +75,7 @@ export class FetchHttpClient implements HttpClient {
status: res.status,
headers,
readableStreamBody: isNode ? res.body as any : undefined,
blobBody: isNode ? undefined : res.blob
blobBody: isNode ? undefined : () => res.blob()
};
if (!httpRequest.rawResponse) {