We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26caee commit f228420Copy full SHA for f228420
esm/dataobjects.js
@@ -722,6 +722,9 @@ export class DataObjects {
722
_get_chunked_data(offset) {
723
//""" Return data which is chunked. """
724
this._get_chunk_params();
725
+ if (this._chunk_address == UNDEFINED_ADDRESS) {
726
+ return [];
727
+ }
728
var chunk_btree = new BTreeV1RawDataChunks(
729
this.fh, this._chunk_address, this._chunk_dims);
730
let data = chunk_btree.construct_data_from_chunks(
0 commit comments