1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-12 18:44:50 +00:00

Fix a bug that prevented adding multiple handlers

This commit is contained in:
raylu 2010-10-15 18:06:51 -04:00 committed by Alex Bramley
parent 7515f11470
commit 036cc4c3eb

View file

@ -34,6 +34,7 @@ func (conn *Conn) AddHandler(name string, f func(*Conn, *Line)) {
}
e = e[0 : len(e)+1]
e[len(e)-1] = f
conn.events[n] = e
} else {
e := make([]func(*Conn, *Line), 1, 10)
e[0] = f