Skip to content

Commit a6764cb

Browse files
authored
fix: add a missing await to an asynchronous call (#469)
1 parent 63aa62e commit a6764cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/AsyncDicomReader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ export class AsyncDicomReader {
536536
*/
537537
async readRawBinary(tagInfo) {
538538
const { length } = tagInfo;
539-
this._emitSplitValues(length);
539+
await this._emitSplitValues(length);
540540
}
541541

542542
isSequence(tagInfo) {

0 commit comments

Comments
 (0)