Skip to content

Commit

Permalink
Merge pull request #2115 from slingamn/issue2114_relaymsg
Browse files Browse the repository at this point in the history
fix #2114
  • Loading branch information
slingamn committed Jan 4, 2024
2 parents 15c0740 + 580fc70 commit 1d8bbde
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions irc/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -1568,6 +1568,10 @@ func (config *Config) isRelaymsgIdentifier(nick string) bool {
return false
}

if strings.HasPrefix(nick, "#") {
return false // #2114
}

for _, char := range config.Server.Relaymsg.Separators {
if strings.ContainsRune(nick, char) {
return true
Expand Down

0 comments on commit 1d8bbde

Please sign in to comment.