Sfoglia il codice sorgente

Merge pull request #1278 from oragono/sanick

fix NICK responses for SANICK
tags/v2.4.0-rc1
Shivaram Lingamneni 3 anni fa
parent
commit
e7eea14b9d
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      irc/nickname.go

+ 1
- 1
irc/nickname.go Vedi File

@@ -84,7 +84,7 @@ func performNickChange(server *Server, client *Client, target *Client, session *
84 84
 		dispatchAwayNotify(session.client, false, "")
85 85
 	}
86 86
 
87
-	for _, channel := range client.Channels() {
87
+	for _, channel := range target.Channels() {
88 88
 		channel.AddHistoryItem(histItem, details.account)
89 89
 	}
90 90
 

Loading…
Annulla
Salva