summaryrefslogtreecommitdiffstats
path: root/bridge/steam
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-08-12 14:51:41 +0200
committerWim <wim@42.be>2017-08-12 14:51:41 +0200
commit28710d0bc7d5bd564d702953c490a865b0cc438d (patch)
treed025fe274779881442a1cf14d62ec2d42671cc3c /bridge/steam
parentad4d461606b5fb9b64377c8ef37110ee0b3c721b (diff)
downloadmatterbridge-msglm-28710d0bc7d5bd564d702953c490a865b0cc438d.tar.gz
matterbridge-msglm-28710d0bc7d5bd564d702953c490a865b0cc438d.tar.bz2
matterbridge-msglm-28710d0bc7d5bd564d702953c490a865b0cc438d.zip
Allow a webhookurl per channel (discord). #239
Diffstat (limited to 'bridge/steam')
-rw-r--r--bridge/steam/steam.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/steam/steam.go b/bridge/steam/steam.go
index ad4b1988..aa125e4a 100644
--- a/bridge/steam/steam.go
+++ b/bridge/steam/steam.go
@@ -60,8 +60,8 @@ func (b *Bsteam) Disconnect() error {
}
-func (b *Bsteam) JoinChannel(channel string) error {
- id, err := steamid.NewId(channel)
+func (b *Bsteam) JoinChannel(channel config.ChannelInfo) error {
+ id, err := steamid.NewId(channel.Name)
if err != nil {
return err
}