From 945b98135dceeebc524fd7fc557204c80f09c21d Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sat, 19 Nov 2022 16:12:33 -0800 Subject: Fix GtkHx compatability --- hotline/client_conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hotline/client_conn.go') diff --git a/hotline/client_conn.go b/hotline/client_conn.go index 7f78704..8c95aeb 100644 --- a/hotline/client_conn.go +++ b/hotline/client_conn.go @@ -170,7 +170,7 @@ func (cc *ClientConn) NewReply(t *Transaction, fields ...Field) Transaction { reply := Transaction{ Flags: 0x00, IsReply: 0x01, - Type: t.Type, + Type: []byte{0x00, 0x00}, ID: t.ID, clientID: cc.ID, ErrorCode: []byte{0, 0, 0, 0}, -- cgit