diff options
Diffstat (limited to 'ui')
-rw-r--r-- | ui/commands.go | 2 | ||||
-rw-r--r-- | ui/room-list.go | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ui/commands.go b/ui/commands.go index 9b1ac25..0adbb61 100644 --- a/ui/commands.go +++ b/ui/commands.go @@ -119,6 +119,8 @@ func cmdAccept(cmd *Command) { } else { cmd.Reply("Successfully accepted invite") } + cmd.MainView.UpdateTags(room) + go cmd.MainView.LoadHistory(room.ID) } func cmdReject(cmd *Command) { diff --git a/ui/room-list.go b/ui/room-list.go index 31e4c2a..1e1d1b0 100644 --- a/ui/room-list.go +++ b/ui/room-list.go @@ -138,7 +138,6 @@ func (list *RoomList) checkTag(tag string) { //delete(list.items, tag) ok = false } - debug.Print("Checking", tag, index, trl.IsEmpty(), ok) if ok && index == -1 { list.tags = append(list.tags, tag) |