Fix panic in irc. Closes #1751 (#1760)

pull/1761/head
Wim 2 years ago committed by GitHub
parent e4c0ca0f48
commit c30e90ff3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -362,8 +362,10 @@ func (b *Birc) skipPrivMsg(event girc.Event) bool {
return true
}
// don't forward message from ourself
if event.Source.Name == b.Nick {
return true
if event.Source != nil {
if event.Source.Name == b.Nick {
return true
}
}
// don't forward messages we sent via RELAYMSG
if relayedNick, ok := event.Tags.Get("draft/relaymsg"); ok && relayedNick == b.Nick {

Loading…
Cancel
Save