Thumbnail

rani/matterbridge.git

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

commit fa660f050000454189095a5ad22c78df9be157f5 Author: Wim <wim@42.be> Date: Thu Feb 21 17:52:28 2019 +0000 Handle quit message relay better on gateways with one channel on the irc bridge #722 diff --git a/gateway/gateway.go b/gateway/gateway.go index eaffca1..36ef3eb 100644 --- a/gateway/gateway.go +++ b/gateway/gateway.go @@ -1886 +18811 @@ func (gw *Gateway) getDestChannel(msg *config.Message, dest bridge.Bridge) []con   // irc quit is for the whole bridge, isn't a per channel quit.   // channel is empty when we quit   if msg.Event == config.EventJoinLeave && getProtocol(msg) == "irc" && msg.Channel == "" { + // if we only have one channel on this irc bridge it's got to be the sending one. + // don't send it back + if channel.Account == msg.Account && len(dest.Channels) == 1 && dest.Protocol == "irc" { + return channels + }   for _, channel := range gw.Channels {   if channel.Account == dest.Account && strings.Contains(channel.Direction, "out") &&   gw.validGatewayDest(msg) {