Skip to content

Commit 3cf705d

Browse files
author
Ivan Dlugos
committed
restore box getMany allowMissing behaviour when not using data-visitors
1 parent f44023a commit 3cf705d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/box.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class Box<T> {
168168
if (_supportsBytesArrays) {
169169
final bytesArray = cGetArray();
170170
try {
171-
return _fbManager.unmarshalArray(bytesArray, allowMissing: false);
171+
return _fbManager.unmarshalArray(bytesArray, allowMissing: allowMissing);
172172
} finally {
173173
bindings.obx_bytes_array_free(bytesArray);
174174
}

0 commit comments

Comments
 (0)