diff options
author | Wim <wim@42.be> | 2017-08-27 22:59:37 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-08-27 22:59:37 +0200 |
commit | 5a8d7b5f6d30bf4d3ee93fe9593e0b3504ad684a (patch) | |
tree | 62f8534833b4184606980d1b61b44bbec8898fed /bridge/steam | |
parent | cfb810713872a5f95a5a54c449fef3bce5aa05b5 (diff) | |
download | matterbridge-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/steam')
-rw-r--r-- | bridge/steam/steam.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bridge/steam/steam.go b/bridge/steam/steam.go index aa125e4a..25291ff4 100644 --- a/bridge/steam/steam.go +++ b/bridge/steam/steam.go @@ -69,13 +69,13 @@ func (b *Bsteam) JoinChannel(channel config.ChannelInfo) error { return nil } -func (b *Bsteam) Send(msg config.Message) error { +func (b *Bsteam) Send(msg config.Message) (string, error) { id, err := steamid.NewId(msg.Channel) if err != nil { - return err + return "", err } b.c.Social.SendMessage(id, steamlang.EChatEntryType_ChatMsg, msg.Username+msg.Text) - return nil + return "", nil } func (b *Bsteam) getNick(id steamid.SteamId) string { |