aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xS/main.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/xS/main.go b/xS/main.go
index c3b2875..c078440 100644
--- a/xS/main.go
+++ b/xS/main.go
@@ -828,8 +828,7 @@ func ircChannelDestroyIfEmpty(ch *channel) {
}
}
-// TODO: Improve the name as it takes mode +q into account.
-func ircSendToRoommates(c *client, message string) {
+func ircNotifyRoommates(c *client, message string) {
targets := make(map[*client]bool)
for _, ch := range channels {
_, present := ch.userModes[c]
@@ -929,7 +928,7 @@ func (c *client) unregister(reason string) {
return
}
- ircSendToRoommates(c, fmt.Sprintf(":%s!%s@%s QUIT :%s",
+ ircNotifyRoommates(c, fmt.Sprintf(":%s!%s@%s QUIT :%s",
c.nickname, c.username, c.hostname, reason))
// The eventual QUIT message will take care of state at clients.
@@ -1379,7 +1378,7 @@ func ircHandleNICK(msg *message, c *client) {
message := fmt.Sprintf(":%s!%s@%s NICK :%s",
c.nickname, c.username, c.hostname, nickname)
- ircSendToRoommates(c, message)
+ ircNotifyRoommates(c, message)
c.send(message)
}