Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit 3df2413f69316a09285f71e8c5182815550b535b Author: Wim <wim@42.be> Date: Sat Oct 29 18:01:16 2016 +0000 Forward channel notices too (irc) diff --git a/bridge/irc/irc.go b/bridge/irc/irc.go index 8ed99eb..ea040af 100644 --- a/bridge/irc/irc.go +++ b/bridge/irc/irc.go @@ -1486 +1488 @@ func (b *Birc) handleNewConnection(event *irc.Event) {  func (b *Birc) handleNotice(event *irc.Event) {   if strings.Contains(event.Message(), "This nickname is registered") && event.Nick == b.Config.NickServNick {   b.i.Privmsg(b.Config.NickServNick, "IDENTIFY "+b.Config.NickServPassword) + } else { + b.handlePrivMsg(event)   }  }