mirror of
https://github.com/42wim/matterbridge
synced 2024-11-17 03:26:07 +00:00
Fix samechannel gateway issue. Closes #207
This commit is contained in:
parent
25ac4c708f
commit
1b1a9ce250
@ -5,6 +5,7 @@ import (
|
|||||||
"github.com/42wim/matterbridge/bridge"
|
"github.com/42wim/matterbridge/bridge"
|
||||||
"github.com/42wim/matterbridge/bridge/config"
|
"github.com/42wim/matterbridge/bridge/config"
|
||||||
log "github.com/Sirupsen/logrus"
|
log "github.com/Sirupsen/logrus"
|
||||||
|
// "github.com/davecgh/go-spew/spew"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
@ -181,6 +182,17 @@ func (gw *Gateway) getDestChannel(msg *config.Message, dest bridge.Bridge) []con
|
|||||||
if _, ok := gw.Channels[getChannelID(*msg)]; !ok {
|
if _, ok := gw.Channels[getChannelID(*msg)]; !ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
// add gateway to message
|
||||||
|
gw.validGatewayDest(msg, channel)
|
||||||
|
|
||||||
|
// do samechannelgateway logic
|
||||||
|
if channel.SameChannel[msg.Gateway] {
|
||||||
|
if msg.Channel == channel.Name && msg.Account != dest.Account {
|
||||||
|
channels = append(channels, *channel)
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if channel.Direction == "out" && channel.Account == dest.Account && gw.validGatewayDest(msg, channel) {
|
if channel.Direction == "out" && channel.Account == dest.Account && gw.validGatewayDest(msg, channel) {
|
||||||
channels = append(channels, *channel)
|
channels = append(channels, *channel)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user