mirror of https://github.com/fluffle/goirc
Don't update Me from WHO/WHOIS reply handlers. Fixes #27.
This commit is contained in:
parent
4cd3831e92
commit
9d069586a7
|
@ -126,7 +126,7 @@ func (conn *Conn) h_TOPIC(line *Line) {
|
|||
|
||||
// Handle 311 whois reply
|
||||
func (conn *Conn) h_311(line *Line) {
|
||||
if nk := conn.st.GetNick(line.Args[1]); nk != nil {
|
||||
if nk := conn.st.GetNick(line.Args[1]); nk != nil && nk != conn.Me() {
|
||||
nk.Ident = line.Args[2]
|
||||
nk.Host = line.Args[3]
|
||||
nk.Name = line.Args[5]
|
||||
|
@ -158,7 +158,7 @@ func (conn *Conn) h_332(line *Line) {
|
|||
|
||||
// Handle 352 who reply
|
||||
func (conn *Conn) h_352(line *Line) {
|
||||
if nk := conn.st.GetNick(line.Args[5]); nk != nil {
|
||||
if nk := conn.st.GetNick(line.Args[5]); nk != nil && nk != conn.Me() {
|
||||
nk.Ident = line.Args[2]
|
||||
nk.Host = line.Args[3]
|
||||
// XXX: do we care about the actual server the nick is on?
|
||||
|
|
Loading…
Reference in New Issue