From 5853654f0a618dc89f893992a7f0d211456483f8 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Wed, 18 Jan 2023 14:56:58 -0800 Subject: Improve third party client compatability --- hotline/transaction_handlers.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'hotline/transaction_handlers.go') diff --git a/hotline/transaction_handlers.go b/hotline/transaction_handlers.go index acc8fe4..d3238f4 100644 --- a/hotline/transaction_handlers.go +++ b/hotline/transaction_handlers.go @@ -933,8 +933,6 @@ func HandleGetUserNameList(cc *ClientConn, t *Transaction) (res []Transaction, e } func HandleTranAgreed(cc *ClientConn, t *Transaction) (res []Transaction, err error) { - cc.Agreed = true - if t.GetField(fieldUserName).Data != nil { if cc.Authorize(accessAnyName) { cc.UserName = t.GetField(fieldUserName).Data -- cgit