Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
lettertwo committed Nov 18, 2021
1 parent d9fc18f commit ed1b602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/core/src/PackagerRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ export default class PackagerRunner {
return {
contents: isLargeBlob
? this.options.cache.getStream(contentKey)
: blobToStream(this.options.cache.getBlob(contentKey)),
: blobToStream(await this.options.cache.getBlob(contentKey)),
map: mapExists
? blobToStream(await this.options.cache.getBlob(mapKey))
: null,
Expand Down

0 comments on commit ed1b602

Please sign in to comment.