Merge pull request #934 from slingamn/issue933_extjoin

fix #933
This commit is contained in:
Shivaram Lingamneni 2020-04-06 11:33:30 -07:00 committed by GitHub
commit c291a5a340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ func (client *Client) historyCutoff() (cutoff time.Time) {
func (client *Client) Logout() {
client.stateMutex.Lock()
client.account = ""
client.accountName = ""
client.accountName = "*"
client.alwaysOn = false
client.accountRegDate = time.Time{}
client.accountSettings = AccountSettings{}