diff options
Diffstat (limited to 'bridge/mumble/mumble.go')
-rw-r--r-- | bridge/mumble/mumble.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/mumble/mumble.go b/bridge/mumble/mumble.go index 1943bd39..945cf559 100644 --- a/bridge/mumble/mumble.go +++ b/bridge/mumble/mumble.go @@ -93,7 +93,7 @@ func (b *Bmumble) JoinChannel(channel config.ChannelInfo) error { func (b *Bmumble) Send(msg config.Message) (string, error) { // Only process text messages b.Log.Debugf("=> Received local message %#v", msg) - if msg.Event != "" && msg.Event != config.EventUserAction { + if msg.Event != "" && msg.Event != config.EventUserAction && msg.Event != config.EventJoinLeave { return "", nil } |