Skip to content

Commit 86ce02e

Browse files
committed
pre-format
1 parent 125605d commit 86ce02e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

JetStreamDriver.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ class BrowserFileLoader {
279279
if (type == "preload") {
280280
if (this.failedPreloads && this.failedPreloads[blobData.prop]) {
281281
this.failedPreloads[blobData.prop] = false;
282-
this.preloads.push({ name: blobData.prop, resource: blobData.resource, blobURLOrPath: blobData.blobURL });
282+
this._preloadBlobData.push({ name: blobData.prop, resource: blobData.resource, blobURLOrPath: blobData.blobURL });
283283
counter.failedPreloadResources--;
284284
}
285285
}
@@ -292,7 +292,7 @@ class BrowserFileLoader {
292292
if (!globalThis.allIsGood)
293293
return;
294294
if (blobData.type == "preload")
295-
this.preloads.push({ name: blobData.prop, resource: blobData.resource, blobURLOrPath: blobData.blobURL });
295+
this._preloadBlobData.push({ name: blobData.prop, resource: blobData.resource, blobURLOrPath: blobData.blobURL });
296296
this.updateCounter();
297297
});
298298

@@ -1162,7 +1162,7 @@ class Benchmark {
11621162
promises.push(browserFileLoader.loadBlob("preload", name, resource).then((blobData) => {
11631163
if (!globalThis.allIsGood)
11641164
return;
1165-
this.preloads.push({ name: blobData.prop, resource: blobData.resource, blobURLOrPath: blobData.blobURL });
1165+
this._preloadBlobData.push({ name: blobData.prop, resource: blobData.resource, blobURLOrPath: blobData.blobURL });
11661166
this.updateCounter();
11671167
}).catch((error) => {
11681168
// We'll try again later in retryPrefetchResourceForBrowser(). Don't throw an error.

0 commit comments

Comments
 (0)