diff options
author | Wim <wim@42.be> | 2017-06-05 23:12:19 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-06-05 23:12:19 +0200 |
commit | 5f30a98bc14da749dc4e96263b6aba9bbbdca114 (patch) | |
tree | dcc3dceeeff6329f21f7b0da33a54d9e54a2c7a1 | |
parent | b8a2fcbaff407e0070242fd0f428700f5d3e3031 (diff) | |
download | matterbridge-msglm-5f30a98bc14da749dc4e96263b6aba9bbbdca114.tar.gz matterbridge-msglm-5f30a98bc14da749dc4e96263b6aba9bbbdca114.tar.bz2 matterbridge-msglm-5f30a98bc14da749dc4e96263b6aba9bbbdca114.zip |
Add gateway name to messages
-rw-r--r-- | bridge/config/config.go | 1 | ||||
-rw-r--r-- | gateway/gateway.go | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bridge/config/config.go b/bridge/config/config.go index 243f6601..ac003070 100644 --- a/bridge/config/config.go +++ b/bridge/config/config.go @@ -23,6 +23,7 @@ type Message struct { Account string Event string Protocol string + Gateway string Timestamp time.Time } diff --git a/gateway/gateway.go b/gateway/gateway.go index 8ca504e5..27a48c75 100644 --- a/gateway/gateway.go +++ b/gateway/gateway.go @@ -200,6 +200,7 @@ func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) { } log.Debugf("Sending %#v from %s (%s) to %s (%s)", msg, msg.Account, originchannel, dest.Account, channel.Name) msg.Channel = channel.Name + msg.Gateway = gw.Name gw.modifyAvatar(&msg, dest) gw.modifyUsername(&msg, dest) // for api we need originchannel as channel |