Browse Source

fix #933

tags/v2.1.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
3f717436f8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      irc/getters.go

+ 1
- 1
irc/getters.go View File

302
 func (client *Client) Logout() {
302
 func (client *Client) Logout() {
303
 	client.stateMutex.Lock()
303
 	client.stateMutex.Lock()
304
 	client.account = ""
304
 	client.account = ""
305
-	client.accountName = ""
305
+	client.accountName = "*"
306
 	client.alwaysOn = false
306
 	client.alwaysOn = false
307
 	client.accountRegDate = time.Time{}
307
 	client.accountRegDate = time.Time{}
308
 	client.accountSettings = AccountSettings{}
308
 	client.accountSettings = AccountSettings{}

Loading…
Cancel
Save