diff options
author | Wim <wim@42.be> | 2017-09-11 23:33:58 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-09-11 23:33:58 +0200 |
commit | d19535fa214cd8716cead09d6ff8e7f9497783eb (patch) | |
tree | c0aff11b46cd50c0fc6b49433f19766cd84a2b1f /vendor/github.com/nlopes/slack | |
parent | 49204cafcc770cc20835fab3b793b6e2d85b8f78 (diff) | |
download | matterbridge-msglm-d19535fa214cd8716cead09d6ff8e7f9497783eb.tar.gz matterbridge-msglm-d19535fa214cd8716cead09d6ff8e7f9497783eb.tar.bz2 matterbridge-msglm-d19535fa214cd8716cead09d6ff8e7f9497783eb.zip |
Update vendor (nlopes/slack)
Diffstat (limited to 'vendor/github.com/nlopes/slack')
-rw-r--r-- | vendor/github.com/nlopes/slack/websocket_managed_conn.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/nlopes/slack/websocket_managed_conn.go b/vendor/github.com/nlopes/slack/websocket_managed_conn.go index 762b8f11..9c48852a 100644 --- a/vendor/github.com/nlopes/slack/websocket_managed_conn.go +++ b/vendor/github.com/nlopes/slack/websocket_managed_conn.go @@ -302,6 +302,8 @@ func (rtm *RTM) handleRawEvent(rawEvent json.RawMessage) { rtm.IncomingEvents <- RTMEvent{"hello", &HelloEvent{}} case "pong": rtm.handlePong(rawEvent) + case "desktop_notification": + rtm.Debugln("Received desktop notification, ignoring") default: rtm.handleEvent(event.Type, rawEvent) } |