Skip to content

Commit

Permalink
[BlinkHelpers] Fix attributes_ array field on blink::ShareableElement…
Browse files Browse the repository at this point in the history
…Data
  • Loading branch information
sanketj committed Oct 7, 2022
1 parent ab8228a commit 48e8957
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ Loader.OnLoad(function() {
return shareableElementData.f("array_size_")
.then(null, () => {
return shareableElementData.f("bit_field_").val()
.then((bitFieldsVal) => bitFieldsVal & ((~0 >> 3) << 1));
.then((bitFieldsVal) => bitFieldsVal >>> 1);
})
.then((arraySize) => shareableElementData.f("attribute_array_").array(arraySize));
}));
Expand Down

0 comments on commit 48e8957

Please sign in to comment.