summaryrefslogtreecommitdiffstats
path: root/bridge/api
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-08-27 22:59:37 +0200
committerWim <wim@42.be>2017-08-27 22:59:37 +0200
commit5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a (patch)
tree62f8534833b4184606980d1b61b44bbec8898fed /bridge/api
parentcfb810713872a5f95a5a54c449fef3bce5aa05b5 (diff)
downloadmatterbridge-msglm-5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a.tar.gz
matterbridge-msglm-5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a.tar.bz2
matterbridge-msglm-5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a.zip
Modify Send() to return also a message id
Diffstat (limited to 'bridge/api')
-rw-r--r--bridge/api/api.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/api/api.go b/bridge/api/api.go
index 196be182..ca28d904 100644
--- a/bridge/api/api.go
+++ b/bridge/api/api.go
@@ -66,11 +66,11 @@ func (b *Api) JoinChannel(channel config.ChannelInfo) error {
}
-func (b *Api) Send(msg config.Message) error {
+func (b *Api) Send(msg config.Message) (string, error) {
b.Lock()
defer b.Unlock()
b.Messages.Enqueue(&msg)
- return nil
+ return "", nil
}
func (b *Api) handlePostMessage(c echo.Context) error {