Skip to content

Commit

Permalink
fix: forget to commit (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler authored Apr 4, 2022
1 parent d03895d commit 81fe7f8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ public FloatArrayPacket(float[] value, Timestamp timestamp) : base()

public FloatArrayPacket At(Timestamp timestamp)
{
return At<FloatArrayPacket>(timestamp);
var packet = At<FloatArrayPacket>(timestamp);
packet.length = length;
return packet;
}

public override float[] Get()
Expand Down

0 comments on commit 81fe7f8

Please sign in to comment.