Skip to content

Commit

Permalink
Merge pull request #2 from devararendy/patch-1
Browse files Browse the repository at this point in the history
Fixed client.go - Heartbeat Packet Length
  • Loading branch information
markwinter authored Nov 24, 2023
2 parents f7357e8 + 4d1e045 commit 6a97b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soupbintcp/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (c *Client) runHeartbeat() {
func (c *Client) sendHeartbeat() {
request := HeartbeatPacket{
Header: Header{
Length: [2]byte{0, 3},
Length: [2]byte{0, 1},
Type: PacketClientHeartbeat,
},
}
Expand Down

0 comments on commit 6a97b00

Please sign in to comment.