diff --git a/src/app/modules/main/controller.nim b/src/app/modules/main/controller.nim index fb3fc9febdf..adf9261888a 100644 --- a/src/app/modules/main/controller.nim +++ b/src/app/modules/main/controller.nim @@ -521,6 +521,10 @@ proc init*(self: Controller) = let args = ContactArgs(e) self.delegate.contactUpdated(args.contactId) + self.events.on(SIGNAL_CONTACT_NICKNAME_CHANGED) do(e: Args): + var args = ContactArgs(e) + self.delegate.contactUpdated(args.contactId) + self.events.on(SIGNAL_LOGGEDIN_USER_NAME_CHANGED) do(e: Args): self.delegate.contactUpdated(singletonInstance.userProfile.getPubKey())