diff options
Diffstat (limited to 'irc/states.go')
-rw-r--r-- | irc/states.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/irc/states.go b/irc/states.go index 8e08275..3ba5572 100644 --- a/irc/states.go +++ b/irc/states.go @@ -335,6 +335,8 @@ func (s *Session) PrivMsg(target, content string) { func (s *Session) privMsg(act actionPrivMsg) (err error) { err = s.send("PRIVMSG %s :%s\r\n", act.Target, act.Content) + target := s.Casemap(act.Target) + delete(s.typingStamps, target) return } |