From 95b51279959956123f87f798d93ee7f1521c0caa Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Tue, 7 Jun 2022 17:44:47 -0700 Subject: Fix ghost login bug in client by using 1.2.3 behavior --- hotline/client.go | 1 - 1 file changed, 1 deletion(-) (limited to 'hotline') diff --git a/hotline/client.go b/hotline/client.go index 1e2972f..3676560 100644 --- a/hotline/client.go +++ b/hotline/client.go @@ -633,7 +633,6 @@ func (c *Client) LogIn(login string, password string) error { NewField(fieldUserIconID, c.pref.IconBytes()), NewField(fieldUserLogin, negateString([]byte(login))), NewField(fieldUserPassword, negateString([]byte(password))), - NewField(fieldVersion, []byte{0, 2}), ), ) } -- cgit