diff options
Diffstat (limited to 'irc')
-rw-r--r-- | irc/events.go | 1 | ||||
-rw-r--r-- | irc/session.go | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/irc/events.go b/irc/events.go index 0451a80..eeac8fb 100644 --- a/irc/events.go +++ b/irc/events.go @@ -24,6 +24,7 @@ type UserNickEvent struct { type SelfJoinEvent struct { Channel string Requested bool // whether we recently requested to join that channel + Topic string } type UserJoinEvent struct { diff --git a/irc/session.go b/irc/session.go index 33d52fc..d08fb22 100644 --- a/irc/session.go +++ b/irc/session.go @@ -692,6 +692,7 @@ func (s *Session) handleRegistered(msg Message) Event { s.channels[channelCf] = c ev := SelfJoinEvent{ Channel: c.Name, + Topic: c.Topic, } if stamp, ok := s.pendingChannels[channelCf]; ok && time.Now().Sub(stamp) < 5*time.Second { ev.Requested = true |