Skip to content

Commit

Permalink
fix: linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adelsz committed May 15, 2024
1 parent a046140 commit 77e83b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wire/src/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const parseMessage = <Params extends object>(
// The + 5 is made up of 1 byte for readInt8 and 4 bytes for readUInt32BE
if (bufferOffset + 5 > buf.length) {
return {
type: "IncompleteMessageError",
type: 'IncompleteMessageError',
messageName: message.name,
};
}
Expand Down

0 comments on commit 77e83b9

Please sign in to comment.