mirror of
https://github.com/42wim/matterbridge
synced 2024-11-17 03:26:07 +00:00
Fix panic on empty params
This commit is contained in:
parent
307ff77b42
commit
4fc48b5aa4
@ -234,6 +234,10 @@ func (b *Birc) handleNewConnection(client *girc.Client, event girc.Event) {
|
||||
}
|
||||
|
||||
func (b *Birc) handleJoinPart(client *girc.Client, event girc.Event) {
|
||||
if len(event.Params) == 0 {
|
||||
flog.Debugf("handleJoinPart: empty Params? %#v", event)
|
||||
return
|
||||
}
|
||||
channel := event.Params[0]
|
||||
if event.Command == "KICK" {
|
||||
flog.Infof("Got kicked from %s by %s", channel, event.Source.Name)
|
||||
|
Loading…
Reference in New Issue
Block a user