From 553ec2085074c5c774b24c6e0f823312805f37fb Mon Sep 17 00:00:00 2001 From: mappu Date: Wed, 8 Feb 2017 18:58:14 +1300 Subject: [PATCH] fix not emitting EVENT_USER_UPDATED_INFO on recieved MyINFO (!) --- HubConnection.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/HubConnection.go b/HubConnection.go index 7a808ce..ef77138 100644 --- a/HubConnection.go +++ b/HubConnection.go @@ -85,6 +85,8 @@ func (this *HubConnection) userJoined_Full(uinf *UserInfo) { if !userExisted { this.processEvent(HubEvent{EventType: EVENT_USER_JOINED, Nick: uinf.Nick}) + } else { + this.processEvent(HubEvent{EventType: EVENT_USER_UPDATED_INFO, Nick: uinf.Nick}) } }