From 7a47321b091de3693dcd5a433d2c1dd3c66727ba Mon Sep 17 00:00:00 2001 From: Satya Rohith Date: Tue, 27 Sep 2022 22:07:46 +0530 Subject: fix(ext/fetch): blob url (#16057) Co-authored-by: Luca Casonato --- ext/fetch/26_fetch.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ext/fetch/26_fetch.js') diff --git a/ext/fetch/26_fetch.js b/ext/fetch/26_fetch.js index 13c34f534..3e90429ce 100644 --- a/ext/fetch/26_fetch.js +++ b/ext/fetch/26_fetch.js @@ -165,6 +165,7 @@ const body = new InnerBody(req.blobUrlEntry.stream()); terminator[abortSignal.add](() => body.error(terminator.reason)); + processUrlList(req.urlList, req.urlListProcessed); return { headerList: [ @@ -179,7 +180,9 @@ if (this.urlList.length == 0) return null; return this.urlList[this.urlList.length - 1]; }, - urlList: recursive ? [] : [...new SafeArrayIterator(req.urlList)], + urlList: recursive + ? [] + : [...new SafeArrayIterator(req.urlListProcessed)], }; } -- cgit v1.2.3