Remove redundant function
This commit is contained in:
parent
e11d786775
commit
3a6c655dfb
|
@ -111,13 +111,9 @@ func (b *Bridge) ignoreMessage(nick string, message string, protocol string) boo
|
|||
return false
|
||||
}
|
||||
|
||||
func setNoNickFormat(msg *config.Message) {
|
||||
msg.Username = msg.Origin + "-" + msg.Username + ": "
|
||||
}
|
||||
|
||||
func setNickFormat(msg *config.Message, format string) {
|
||||
if format == "" {
|
||||
setNoNickFormat(msg)
|
||||
msg.Username = msg.Origin + "-" + msg.Username + ": "
|
||||
return
|
||||
}
|
||||
msg.Username = strings.Replace(format, "{NICK}", msg.Username, -1)
|
||||
|
|
Loading…
Reference in New Issue