Browse Source

Merge pull request #2115 from slingamn/issue2114_relaymsg

fix #2114
tags/v2.13.0-rc1
Shivaram Lingamneni 4 months ago
parent
commit
1d8bbde95c
No account linked to committer's email address
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      irc/config.go

+ 4
- 0
irc/config.go View File

1568
 		return false
1568
 		return false
1569
 	}
1569
 	}
1570
 
1570
 
1571
+	if strings.HasPrefix(nick, "#") {
1572
+		return false // #2114
1573
+	}
1574
+
1571
 	for _, char := range config.Server.Relaymsg.Separators {
1575
 	for _, char := range config.Server.Relaymsg.Separators {
1572
 		if strings.ContainsRune(nick, char) {
1576
 		if strings.ContainsRune(nick, char) {
1573
 			return true
1577
 			return true

Loading…
Cancel
Save