diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-07 17:44:47 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-07 17:45:06 -0700 |
| commit | 95b51279959956123f87f798d93ee7f1521c0caa (patch) | |
| tree | 73722bdc17b9d8f35ae4b3fbfaafec0811366824 | |
| parent | 5ecdd99073d3236aa99910c5e4a241da35ab1138 (diff) | |
Fix ghost login bug in client by using 1.2.3 behavior
| -rw-r--r-- | hotline/client.go | 1 |
1 files changed, 0 insertions, 1 deletions
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}), ), ) } |