aboutsummaryrefslogtreecommitdiff
path: root/hotline/client_conn.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2022-11-19 16:12:33 -0800
committerJeff Halter <868228+jhalter@users.noreply.github.com>2022-11-19 16:12:33 -0800
commit945b98135dceeebc524fd7fc557204c80f09c21d (patch)
treee3787e7f831df1eca9020b9462bc683c48cde329 /hotline/client_conn.go
parentb5ec3b91cde628bd0d8340b244169aae313c2ad6 (diff)
Fix GtkHx compatability
Diffstat (limited to 'hotline/client_conn.go')
-rw-r--r--hotline/client_conn.go2
1 files changed, 1 insertions, 1 deletions
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},