Browse Source

fix NICK responses for SANICK

tags/v2.4.0-rc1
Shivaram Lingamneni 3 years ago
parent
commit
b478a13671
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      irc/nickname.go

+ 1
- 1
irc/nickname.go View 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…
Cancel
Save