diff options
-rw-r--r-- | bridge/sshchat/sshchat.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bridge/sshchat/sshchat.go b/bridge/sshchat/sshchat.go index 3a4512cb..6b78c223 100644 --- a/bridge/sshchat/sshchat.go +++ b/bridge/sshchat/sshchat.go @@ -130,6 +130,10 @@ func (b *Bsshchat) handleSSHChat() error { if strings.Contains(b.r.Text(), "Rate limiting is in effect") { continue } + // skip our own messages + if !strings.HasPrefix(b.r.Text(), "["+b.GetString("Nick")+"] \x1b") { + continue + } res := strings.Split(stripPrompt(b.r.Text()), ":") if res[0] == "-> Set theme" { wait = false |