From 7421197b8f6f28f110d5f2ef69f5f1e3f4d9b0e6 Mon Sep 17 00:00:00 2001 From: erinn Date: Sat, 2 Feb 2019 20:52:29 -0800 Subject: [PATCH] load groups faster --- go/gothings/gcd.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go/gothings/gcd.go b/go/gothings/gcd.go index 66486e5..1aefc00 100644 --- a/go/gothings/gcd.go +++ b/go/gothings/gcd.go @@ -108,6 +108,10 @@ func (this *GrandCentralDispatcher) sendMessage(message string, mID uint) { } func (this *GrandCentralDispatcher) loadMessagesPane(handle string) { + go this.loadMessagesPaneHelper(handle) +} + +func (this *GrandCentralDispatcher) loadMessagesPaneHelper(handle string) { this.ClearMessages() this.SetCurrentOpenConversation(handle) c := this.UIState.GetContact(handle)