Fix roomid bug (gitter)

pull/157/head
Wim 8 years ago
parent e05a323afd
commit c30ffeb81e

@ -58,8 +58,9 @@ func (b *Bgitter) JoinChannel(channel string) error {
}
room, err := b.c.GetRoom(roomID)
if err != nil {
b.Rooms = append(b.Rooms, *room)
return err
}
b.Rooms = append(b.Rooms, *room)
user, err := b.c.GetUser()
if err != nil {
return err

Loading…
Cancel
Save