summaryrefslogtreecommitdiffstats
path: root/gateway
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-10-23 22:23:20 +0200
committerWim <wim@42.be>2016-10-23 22:23:20 +0200
commite93847a95ed984837128b468cc3ab16702843095 (patch)
tree153b1d9d0f80029a565739dc333aa64ea9d77816 /gateway
parent545377742c268f1193246a4005c07b0d7a516eaa (diff)
downloadmatterbridge-msglm-e93847a95ed984837128b468cc3ab16702843095.tar.gz
matterbridge-msglm-e93847a95ed984837128b468cc3ab16702843095.tar.bz2
matterbridge-msglm-e93847a95ed984837128b468cc3ab16702843095.zip
Launch every account only once. Fixes #48
Diffstat (limited to 'gateway')
-rw-r--r--gateway/gateway.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/gateway/gateway.go b/gateway/gateway.go
index 45bb9e34..464a4d95 100644
--- a/gateway/gateway.go
+++ b/gateway/gateway.go
@@ -26,12 +26,12 @@ func New(cfg *config.Config, gateway *config.Gateway) error {
gw.MyConfig = gateway
exists := make(map[string]bool)
for _, br := range append(gateway.In, gateway.Out...) {
- if exists[br.Account+br.Channel] {
+ if exists[br.Account] {
continue
}
log.Infof("Starting bridge: %s channel: %s", br.Account, br.Channel)
gw.Bridges = append(gw.Bridges, bridge.New(cfg, &br, c))
- exists[br.Account+br.Channel] = true
+ exists[br.Account] = true
}
gw.mapChannels()
gw.mapIgnores()
@@ -103,10 +103,11 @@ func (gw *Gateway) handleMessage(msg config.Message, dest bridge.Bridge) {
if gw.ignoreMessage(&msg) {
return
}
+ originchannel := msg.Channel
channels := gw.getDestChannel(&msg, dest.FullOrigin())
for _, channel := range channels {
// do not send the message to the bridge we come from if also the channel is the same
- if msg.FullOrigin == dest.FullOrigin() && msg.Channel == channel {
+ if msg.FullOrigin == dest.FullOrigin() && channel == originchannel {
continue
}
msg.Channel = channel
@@ -115,7 +116,7 @@ func (gw *Gateway) handleMessage(msg config.Message, dest bridge.Bridge) {
return
}
gw.modifyMessage(&msg, dest)
- log.Debugf("Sending %#v from %s to %s", msg, msg.FullOrigin, dest.FullOrigin())
+ log.Debugf("Sending %#v from %s (%s) to %s (%s)", msg, msg.FullOrigin, originchannel, dest.FullOrigin(), channel)
err := dest.Send(msg)
if err != nil {
fmt.Println(err)