diff options
author | Wim <wim@42.be> | 2019-04-06 22:55:57 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2019-04-06 23:12:48 +0200 |
commit | 8a875f292eb32cf6e71545a2d1b1652a8a56d6ed (patch) | |
tree | 1ffce1207a74dd7cfa3762aabca5af1eb2a5e3e2 | |
parent | 60a85621eaaf511e67a1c2a9a0853caf3eed5a16 (diff) | |
download | matterbridge-msglm-8a875f292eb32cf6e71545a2d1b1652a8a56d6ed.tar.gz matterbridge-msglm-8a875f292eb32cf6e71545a2d1b1652a8a56d6ed.tar.bz2 matterbridge-msglm-8a875f292eb32cf6e71545a2d1b1652a8a56d6ed.zip |
Revert fix for #722. Closes #781
Revert "Fix typo"
This reverts commit dffd67eb311580aa2b14e7f5a069cfefdbf3aacc.
Revert "Handle quit message relay better on gateways with one channel on the irc bridge #722"
This reverts commit 240559581a225ff632c00a52e029b3728c61309e.
Revert "Support quits from irc correctly. Fixes #722 (#724)"
This reverts commit d76a04bd0a96772cec5b279aaa1ee45235adc707.
-rw-r--r-- | bridge/irc/handlers.go | 4 | ||||
-rw-r--r-- | gateway/gateway.go | 17 |
2 files changed, 0 insertions, 21 deletions
diff --git a/bridge/irc/handlers.go b/bridge/irc/handlers.go index a5df2d53..ce4f0445 100644 --- a/bridge/irc/handlers.go +++ b/bridge/irc/handlers.go @@ -92,10 +92,6 @@ func (b *Birc) handleJoinPart(client *girc.Client, event girc.Event) { return } b.Log.Debugf("<= Sending JOIN_LEAVE event from %s to gateway", b.Account) - // QUIT isn't channel bound, happens for all channels on the bridge - if event.Command == "QUIT" { - channel = "" - } msg := config.Message{Username: "system", Text: event.Source.Name + " " + strings.ToLower(event.Command) + "s", Channel: channel, Account: b.Account, Event: config.EventJoinLeave} b.Log.Debugf("<= Message is %#v", msg) b.Remote <- msg diff --git a/gateway/gateway.go b/gateway/gateway.go index 9957a21d..e76e1d59 100644 --- a/gateway/gateway.go +++ b/gateway/gateway.go @@ -212,23 +212,6 @@ func (gw *Gateway) getDestChannel(msg *config.Message, dest bridge.Bridge) []con return channels } - // 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 dest.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) { - channels = append(channels, *channel) - } - } - return channels - } - // if source channel is in only, do nothing for _, channel := range gw.Channels { // lookup the channel from the message |