mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
Only colour IRC nicks if there is one. (#1161)
This commit is contained in:
parent
bce736993e
commit
5847f7758c
@ -206,7 +206,7 @@ func (b *Birc) doSend() {
|
||||
for msg := range b.Local {
|
||||
<-throttle.C
|
||||
username := msg.Username
|
||||
if b.GetBool("Colornicks") {
|
||||
if b.GetBool("Colornicks") && len(username) > 1 {
|
||||
checksum := crc32.ChecksumIEEE([]byte(msg.Username))
|
||||
colorCode := checksum%14 + 2 // quick fix - prevent white or black color codes
|
||||
username = fmt.Sprintf("\x03%02d%s\x0F", colorCode, msg.Username)
|
||||
|
Loading…
Reference in New Issue
Block a user