Skip to content

Commit

Permalink
Fix unimplemented error when loading bundles (#7058)
Browse files Browse the repository at this point in the history
* Fix unimplemented error

* Create soft-nails-give.md
  • Loading branch information
wu-hui committed Feb 23, 2023
1 parent 36558bd commit b30186f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/soft-nails-give.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@firebase/firestore": patch
---

Fix unimplemented error when loading bundles
2 changes: 1 addition & 1 deletion packages/firestore/src/util/byte_stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function toByteStreamReaderHelper(
},
async cancel(): Promise<void> {},
releaseLock() {},
closed: Promise.reject('unimplemented')
closed: Promise.resolve()
};
return reader;
}

0 comments on commit b30186f

Please sign in to comment.