Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpelsepp committed Jul 16, 2024
1 parent d50406f commit 73e33aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gallia/transports/vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ async def read_unsafe(
)
await self.write_tp_frame(fc_frame)
data = frame.data + await self._handle_fragmented(frame.size)
data = data[: frame.size + 1]
data = data[: frame.size]
logger.debug("read data: %s", data.hex())
return data
case _:
Expand Down

0 comments on commit 73e33aa

Please sign in to comment.