Don't send user in prefix for echo messages

This is not very useful and confuses clients.
This commit is contained in:
Simon Ser 2021-11-15 23:53:25 +01:00
parent b9e06e498e
commit e44f4b2eee

View File

@ -2182,10 +2182,7 @@ func (dc *downstreamConn) handleMessageRegistered(msg *irc.Message) error {
}
echoMsg := &irc.Message{
Tags: echoTags,
Prefix: &irc.Prefix{
Name: uc.nick,
User: uc.username,
},
Prefix: &irc.Prefix{Name: uc.nick},
Command: msg.Command,
Params: []string{upstreamName, text},
}